从applicationContext.xml读取一个环境变量

我需要读取我的web.xml中定义的环境变量

<env-entry>
    <description>Path Repositorio NFS</description>
    <env-entry-name>PATH_ENV</env-entry-name>
    <env-entry-type>java.lang.String</env-entry-type>
    <env-entry-value>C:/V3</env-entry-value>
</env-entry>

从我的applicationContext.xml

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="${PATH_ENV}/myprop.properties" />
</bean>

我怎样才能做到这一点 ?


最后我做了下一个:

1在context.xml中定义环境变量:

<Environment name="PATH_ENV" type="java.lang.String"/>

2在web.xml中定义env-entry

<env-entry>
    <description>Path Repositorio NFS</description>
    <env-entry-name>PATH_ENV</env-entry-name>
    <env-entry-type>java.lang.String</env-entry-type>
    <env-entry-value>/WEB-INF/</env-entry-value>
  </env-entry>

3在applicationContext.xml中定义

<bean id="configurationPath" class="org.springframework.jndi.JndiObjectFactoryBean">  
    <property name="jndiName">  
        <value>java:comp/env/PATH_ENV</value>  
    </property>  
</bean>  

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
       <property name="location">
            <bean factory-bean="configurationPath" factory-method="concat">
                <constructor-arg value="myprop.properties"/>
            </bean>
        </property>
    </bean>

这是正确运行,但是如果我定义完整路径:

<env-entry-value>C:/V3/</env-entry-value>

我有下一个问题:

java.io.FileNotFoundException: Could not open ServletContext resource [/C:/V3/aesantasa.properties]

我无法在env-entry-value中定义完整路径为什么?


您可以使用JndiObjectFactoryBean或<jee:jndi-lookup>查找JNDI条目(包括环境条目和资源):

<jee:jndi-lookup id="PATH_ENV" jndi-name="PATH_ENV"/>

(要使用jee命名空间,您必须声明它)。

它定义了一个名为“PATH_ENV”的spring bean,它包含(作为字符串)环境条目中配置的路径。 您现在可以将其注入其他bean中:

<bean class="xy.Foo">
    <property name="path" ref="PATH_ENV"/>
</bean>

剩下的难题是连接字符串。 (不幸的是,没有JndiPlaceholderConfigurer可以用JNDI环境条目替换占位符,因此您不能使用${property}/foo语法进行连接,并且必须提供另一个bean定义:

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location">
        <bean factory-bean="PATH_ENV" factory-method="concat">
            <constructor-arg>/myprop.properties</constructor-arg>
        </bean>
    </property>
</bean>

(代码未经测试,因为我手边没有Spring项目来测试它)


你可以使用context-param ,这将工作。

<context-param>
    <param-name>PATH_ENV</param-name>
    <param-value>C:/V3</param-value>
</context-param>

为什么不使用以下内容?

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="location" value="file:C:/V3/myprop.properties"/>
</bean>
链接地址: http://www.djcxy.com/p/11205.html

上一篇: Read an environment variable from applicationContext.xml

下一篇: Launching Selenium test from bookmark?