在运行时覆盖 Spring WebApp 中的属性文件

Posted

技术标签:

【中文标题】在运行时覆盖 Spring WebApp 中的属性文件【英文标题】:Override Properties file in Spring WebApp at Runtime 【发布时间】:2016-01-16 01:15:24 【问题描述】:

我正在使用 PropertyPlaceholderConfigurer 在我的 Spring WebApplication 中加载属性文件,如下所示:

<bean
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>classpath:db.properties</value>
                <value>classpath:mail.properties</value>
            </list>
        </property>
    </bean>

现在,我想覆盖 mail.properties 中的一些属性,所以我在我的 application-context 文件中创建了一个额外的条目来读取这个 post,如下所示:

<context:property-placeholder location="file:override.properties"
        order="-1" ignore-unresolvable="true" ignore-resource-not-found="true" />

然后,在我的 Tomcat Server 中,在启动配置的 VM Arguments 中,我提供了额外的条目:

-Dexternal.props="/Users/ArpitAggarwal/Desktop/override.properties"

对于一些我必须覆盖的键的覆盖值。

但是,WebApp 没有获取来自override.properties 的值。谁能帮我弄清楚我错过了什么。

任何帮助将不胜感激。谢谢!

【问题讨论】:

【参考方案1】:

我认为使用多个 propertyPlaceholders 并不是一个好主意。 当两个 xml 配置在同一上下文中加载每个属性并尝试交叉使用它们时,我遇到了很多问题。

如果你想外部化一个属性文件,我会建议一个 JNDI 属性:

<bean
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <list>
            <value>classpath:db.properties</value>
            <value>classpath:mail.properties</value>
            <value>$java:com/env/myApp/externalProperties
        </list>
    </property>
</bean>

此 JNDI 的值将是:“file:/path-to-propertiesFile”。

这样你只需要一个propertyePlaceholder。 另请注意,通过将外部文件作为最后一个位置,如果您有重复的键,spring 将只保留最后一个。

【讨论】:

【参考方案2】:

你只是在你的应用程序上下文中使用

<context:property-placeholder location="file:///$external.props"
    order="-1" ignore-unresolvable="true" ignore-resource-not-found="true" />

问题是你用错了位置,实际位置是 vm arg variable key => $external.props

【讨论】:

这强制要求从服务器提供override.properties 作为vm arg【参考方案3】:

我解决问题的方法是将location属性替换为$ext.properties.dir:classpath:/override.properties,如下:

<context:property-placeholder
        location="$ext.properties.dir:classpath:/override.properties" order="-1"
        ignore-unresolvable="true" ignore-resource-not-found="true" />

并提供来自application-server/jvmext.properties.dir 值:

-Dext.properties.dir=file:/Users/ArpitAggarwal/properties/

参考:6-tips-for-managing-property-files-with-spring.

【讨论】:

以上是关于在运行时覆盖 Spring WebApp 中的属性文件的主要内容,如果未能解决你的问题,请参考以下文章

Maven 配置文件属性不会覆盖弹簧配置中的值

使用 Spring 覆盖外部属性文件中的属性(如果存在)

在 Spring 中使用 System 覆盖属性

是否可以使用会话中的属性配置 Spring 会话范围的 bean?

使用现有的 TestUnit 测试和 Simplecov 覆盖运行 RSpec

使用tomcat 6在spring webapp中设置Commons Logging / Log4j的问题