0

我已将 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

如果我错过了什么,请告诉我?

4

1 回答 1

0

谢谢,它正在工作,我已经从 WAS 环境中获取 spring.profiles.active 变量的值并存储到上下文范围中。

于 2014-09-03T04:13:17.760 回答