1

我有两个属性文件:

environment.properties:
 - project.host.db3.database.name=oracle

application.properties:
 - database.name=${project.host.db3.database.name}

第一个代表环境变量,第二个代表要在 spring 项目中使用的属性,在此配置中,我尝试设置 environment.properties 但当然它不起作用:

<bean id="systemPropertiesLoader"   
class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="targetObject" value="#{@systemProperties}" />
        <property name="targetMethod" value="putAll" />
        <property name="arguments">
    <util:properties location="classpath:environment.properties" />
</property>
</bean>

<bean id="propertyPlaceholderConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
depends-on="systemPropertiesLoader">
<property name="locations">
    <list>
        <value>classpath:application.properties</value>
    </list>
</property>

<!-- bean using database.name -->

它可行吗?如果不可行,人们如何在他们的项目中拥有不可知的属性(如 database.name),并且只部署一个文件(war、jar 等)?

4

1 回答 1

0

好吧,只要您像这样定义属性,它似乎对于定义的 beans xml 是可行的:

<bean id="propertyPlaceholderConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
depends-on="systemPropertiesLoader">

但是,如果您尝试从 servlet 访问属性:

this.getClass().getClassLoader().getResourceAsStream("application.properties");

你有机会得到这个:

bad port configuration: ${project.host.db3.database.port}
java.lang.NumberFormatException: For input string: "${project.host.db3.database.port}"

作为对 yorkw 的回答,现在我可以在多个环境中部署相同的战争,并使用 -Denvironment=development 配置主机,因此我可以部署用于开发、生产等的属性文件,并且只需使用:

<bean id="systemPropertiesLoader"   
class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="targetObject" value="#{@systemProperties}" />
        <property name="targetMethod" value="putAll" />
        <property name="arguments">
    <util:properties location="classpath:**${environment}/**environment.properties" />
</property>
</bean>

否则,我应该在部署每个环境之前替换 application.properties。我相信有比这更好的解决方案。

于 2012-08-08T06:46:56.147 回答