私はこのようなPropertyPlaceholderConfigurerを持っている:だから、私は「メインABOVEこのBeanを置く1つのSpring PropertyPlaceholderConfigurerがもう1つを構成できますか?
<context-param>
<param-name>runningMode</param-name>
<param-value>production</param-value>
</context-param>
:私はこのようなweb.xmlに私の走行モードを指定できるようにしたいと思い
<bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true"/>
<property name="locations">
<list>
<value>classpath:assuredlabor/margarita-${runningMode}.properties</value>
</list>
</property>
</bean>
'プロパティビーン私は上記で説明しました:
<bean id="servletPropertyPlaceholderConfigurer" class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
</bean>
しかし、それは動作していないようです。
は春に、このことは可能ですか?私は今バージョン2.5を使用しています。
私はこれと同様の問題が見つかりました:
PropertyPlaceholderConfigurer with Tomcat & ContextLoaderListener
をしかしそこServletContextPropertyPlaceholderConfigurerのない議論はされていないので、私はそれが正当な質問だと思います。