4

我在我的 Spring (3.1) XML 之一中定义了以下属性文件:

<context:property-placeholder location="classpath:MyConfigFile.properties"/> 

我希望能够定义第二个可选属性文件,它将覆盖“MyConfigFile.properties”文件并被加载而不是它。

换句话说,我希望我的应用程序加载“MyConfigFile.properties”文件,但如果“StrogerConfigFile.properties”将在类路径中可用,它将被加载。

任何人都知道如何使用 Spring XML 来完成它?

4

2 回答 2

13
<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>

这是我使用的非常灵活的设置。允许您直接在 xml 中具有基本默认值,在属性文件中具有默认值并在另一个属性文件中覆盖。

于 2012-09-12T07:05:46.800 回答
1

你有没有尝试过

<property name="ignoreResourceNotFound" value="true"/>
<property name="locations">
    <list>
        <value>classpath:default.properties</value>
        <value>classpath:overwrite.properties</value>
    </list>
</property>
于 2012-09-12T06:29:06.543 回答