Overriding property file using spring

2019-02-10 20:29发布

I have the following property file defined in one of my Spring (3.1) XMLs:

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

I want to be able to define a second optional property file which will override the "MyConfigFile.properties" file and will get loaded instead of it.

In Other words I want my application to load the "MyConfigFile.properties" file, but if a "StrogerConfigFile.properties" will be available at the classpath- it will get loaded instead.

Anyone knows how it can be done using the Spring XML?

2条回答
别忘想泡老子
2楼-- · 2019-02-10 21:27

have you tried

<property name="ignoreResourceNotFound" value="true"/>
<property name="locations">
    <list>
        <value>classpath:default.properties</value>
        <value>classpath:overwrite.properties</value>
    </list>
</property>
查看更多
Deceive 欺骗
3楼-- · 2019-02-10 21:33
<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>

This is a setup I use that is pretty flexible. Allows you to have basic default values directly in the xml, defaults in a properties file and overrides in another properties file.

查看更多
登录 后发表回答