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>
これどうやってするの ?
最後に私は次のことをしました:
1context.xmlで環境変数を定義します。
<Environment name="PATH_ENV" type="java.lang.String"/>
2web.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>
3applicationContext.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でフルパスを定義できないのはなぜですか?