使用 PropertyPlaceholderConfigurer 加载 .properties

system.properties放在 config 包下:

user=root
password=root
jdbcUrl=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8;
driverClass=com.mysql.jdbc.Driver

spring 配置文件 xml 中:

<!-- 使用PropertyPlaceholderConfigurer读取system.property文件 s -->
	 <bean id="propertyConfigurer"  class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>classpath:config/system.properties</value>
            </list>
        </property>
 	</bean>
	<!-- 使用PropertyPlaceholderConfigurer读取system.property文件 e -->


你可能感兴趣的:(使用 PropertyPlaceholderConfigurer 加载 .properties)