我已将spring.profiles.active环境变量配置到websphere服务器中,并将变量值用于spring配置文件。 我的Config.xml就像
<bean id="propertiesUtil" class="common.PropertiesUtil">
<property name="locations">
<list>
<value>classpath:common.properties</value>
<value>classpath:${spring.profiles.active}/env_${spring.profiles.active}_config.properties</value>
</list>
</property>
在将应用程序部署到WAS时获得异常就像:
Caused by: java.io.FileNotFoundException: class path resource
[${spring.profiles.active}/env_${spring.profiles.active}_config.properties]
cannot be opened because it does not exist
请告诉我,如果我错过了什么?
答案 0 :(得分:0)
谢谢, 它正在工作,我从WAS环境中获取了spring.profiles.active变量的值并存储到了上下文范围。