Spring从JBoss上下文加载PropertySourcesPlaceholderConfigurer

时间:2013-03-19 14:35:44

标签: java spring properties jboss7.x configuration-files

我有一个使用PropertySourcesPlaceholderConfigurer的spring 3.1应用程序加载设置,我想管理测试和生产环境,只需从本地文件属性中指定的服务器上下文覆盖设置加载设置。

下一个示例适用于Tomcat,如何在JBoss AS 7.1中执行相同操作?

在春天的背景下,我有:

<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
    <property name="ignoreUnresolvablePlaceholders" value="true" />
    <property name="localOverride" value="false" />
    <property name="locations">
        <list>
            <value>classpath:Application.properties</value>
            <value>classpath:ApplicationTest.properties</value>
        </list>
    </property>
</bean>
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
    <property name="driverClass" value="${jdbc.driverClassName}" />
    <property name="jdbcUrl" value="${jdbc.url}" />
    <property name="user" value="${jdbc.username}" />
    <property name="password" value="${jdbc.password}" />
</bean>

在ApplicationTest.properties中(覆盖Application.properties):

jdbc.driverClassName=oracle.jdbc.OracleDriver
jdbc.url=jdbc:oracle:thin:@XXXX:1521:xxxx
jdbc.username=myUsername
jdbc.password=myPassword

在context.xml中(在Tomcat / conf目录中):

<Context>
    ...
    <Parameter name="jdbc.driverClassName" value="oracle.jdbc.OracleDriver" override="false"/>
    <Parameter name="jdbc.url" value="jdbc:oracle:thin:@XXXX:1521:ProductionSID" override="false"/>
    <Parameter name="jdbc.username" value="myProductionUsername" override="false"/>
    <Parameter name="jdbc.password" value="myProductionPassword" override="false"/>
    ...
</Context>

这样,context.xml中指定的所有参数都会覆盖ApplicationTest.properties中的参数。

有没有办法在JBoss中指定上下文参数? (即在standalone.xml文件中)

编辑 - 已解决:

正如答案中所建议的那样,如果我将web-INF / jboss-web.xml中的条目放在有效的webapp中:

<jboss-web>
...
    <env-entry>
        <env-entry-name>jdbc.username</env-entry-name>
        <env-entry-value>myUsername</env-entry-value>
        <env-entry-type>java.lang.String</env-entry-type>
    </env-entry>
...
</jboss-web>

但我的目标是将配置文件从webapp中删除。 我用这种方式解决了,我从$ SERVER / conf目录加载配置文件:

<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
    <property name="ignoreUnresolvablePlaceholders" value="false" />
    <property name="localOverride" value="false" />
    <property name="ignoreResourceNotFound" value="true" />
    <property name="locations">
        <list>
            <value>classpath:Application.properties</value>
            <value>classpath:ApplicationTEST.properties</value>
            <value>file:${catalina.home}\conf\ApplicationPRODUCTION.properties</value><!-- FOR TOMCAT -->
            <value>file:${jboss.server.base.dir}\configuration\ApplicationPRODUCTION.properties</value><!-- FOR JBOSS-->
        </list>
    </property>
</bean>

如果有人知道如何将JBOSS配置中的参数从webapp中取出(如TOMCAT),我们非常感谢!

全部谢谢!

2 个答案:

答案 0 :(得分:2)

根据JBoss7文档:

  

在AS7中,忽略文件context.xml。大多数旧的context.xml   配置已移至 jboss-web.xml

有关详细信息,请参阅here

在旧版本中,您可以像往常一样将这些属性添加到context.xml中 - JBoss将Tomcat用作servlet容器。

答案 1 :(得分:0)

使用jboss-web.xml文件。此文件专门替换Tomcat中的context.xml。