我在我的一个Spring(3.1)XML中定义了以下属性文件:
<context:property-placeholder location="classpath:MyConfigFile.properties"/>
我希望能够定义第二个可选属性文件,该文件将覆盖“MyConfigFile.properties”文件并将被加载而不是它.
换句话说,我希望我的应用程序加载“MyConfigFile.properties”文件,但如果在类路径中有“StrogerConfigFile.properties”,它将被加载.
任何人都知道如何使用Spring XML完成它?
<context:property-placeholder location="file:///[path]/override1.properties,file:///[path]/override2.properties" properties-ref="defaultProps" /> <bean id="defaultProps" class="org.springframework.beans.factory.config.Propertiesfactorybean"> <property name="locations"> <array> <value>classpath:default1.properties</value> <value>classpath:default2.properties</value> </array> </property> <property name="properties"> <util:properties local-override="true"> <prop key="some.property">some value</prop> </util:properties> </property> </bean>