我已将 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
如果我错过了什么,请告诉我?