在
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设置变量呢?
谢谢
随机化