分类: Java
2015-07-30 10:52:36
(1)获取一个配置文件
点击(此处)折叠或打开
-
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
-
<property name="location">
-
<value>file:db.properties</value>
-
</property>
-
</bean>
(2)获取多个配置文件时,配置就需要使用locations
点击(此处)折叠或打开