在春天文件我有:的Tomcat + Spring和環境變量
<bean id="propertyConfigurer" class="org.myapp.MyConfigurator">
<property name="locations">
<list>
<value>classpath:configuration-${env}.properties</value>
</list>
</property>
</bean>
的$ {ENV}變量在Maven的配置文件定義。 但是,當我從eclipse運行tomcat 6(已發佈)中的應用程序時,它不會在maven中查找。那麼如何設置Tomcat的變量?
由於
隨機化
http://stackoverflow.com/questions/3965446/how-to-read-system -environment-variable-in-spring-applicationcontext –