17

我有 2 个属性文件。我已经提到了这两个文件context:property-placeholder......

<context:property-placeholder location="conf/ConfServer.conf,conf/LicenseSettings.properties" />

我也试过这个

<context:property-placeholder location="conf/ConfServer.conf,conf/LicenseSettings.properties" />

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <list>
            <value>conf/LicenseSettings.properties</value>
        </list>
    </property>
   <property name="ignoreUnresolvablePlaceholders" value="true"/>
</bean>

我尝试过的上述两种方法都不起作用。
谁能发现错误并帮助我解决这个问题?
我已经提到过这个,但它对我没有好处。

4

2 回答 2

43

您可以在配置文件中指定多个context:property-placeholder标签。order您还可以使用该属性指定将首先加载的内容。

<context:property-placeholder location="conf/ConfServer.conf" order="1" ignore-unresolvable="true" />
<context:property-placeholder location="conf/LicenseSettings.properties" order="2" ignore-unresolvable="true" />
于 2013-01-22T10:40:21.423 回答
1

您可以尝试从项目根目录中引用这些属性吗

conf/ConfServer.conf

conf/LicenseSettings.properties

这些可能无法正确引用。

于 2014-01-10T04:50:39.263 回答