0

我有 Spring Framework 的下一个属性文件


带有内容的config.properties

environment=devel //posible values: devel, testing, prod

并使用之前的环境属性,选择以下一些文件来动态加载

config-service1-devel.properties
config-service1-testing.properties
config-service1-prod.properties
config-serviceN-devel.properties
config-serviceN-testing.properties
config-serviceN-prod.properties

然后,用spring我想加载属性,我解决加载第一个属性文件,但我不明白如何使用表达式语言来完成依赖属性的值。

<bean id="MainApplicationProperties"
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location"
        value="file://#{systemProperties['jboss.server.home.dir']}/conf/services.properties" />

    <property name="placeholderPrefix" value="$mainProperty{" />
    <property name="placeholderSuffix" value="}" />
</bean>
<bean id="SecondApplicationProperties"
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
    depends-on="MainApplicationProperties">

    <property name="locations">
        <list>
            <value>file://#{systemProperties['jboss.server.home.dir']}/conf/serviceOne/service1-$mainProperty{environment}.properties</value>
            <value>file://#{systemProperties['jboss.server.home.dir']}/conf/serviceTwo/service2-$mainProperty{environment}.properties</value>
            <value>file://#{systemProperties['jboss.server.home.dir']}/conf/serviceN/serviceN-$mainProperty{environment}.properties</value>
        </list>
    </property>

</bean>

错误输出是下一个,

java.io.FileNotFoundException: /..../conf/serviceOne/service1-$mainProperty{environment}.properties (No such file or directory)

我的意见是,价值没有被取代

帮帮我,谢谢

4

1 回答 1

1

问题是当BeanFactoryPostProcessors开始被调用时,它们已经被实例化了。所以即使你第一个PropertyPlaceholderConfigurer修改了第二个的bean定义PropertyPlaceholderConfigurer,它也没有任何效果,因为两个bean都已经被实例化了。

于 2013-06-07T22:54:36.297 回答