我有2個屬性文件與我。我在context:property-placeholder
這樣提到這兩個文件...上下文:property-placeholder not for multiple files
<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>
兩個以上提到的方法我都試過不工作。
任何人都可以發現這個錯誤並幫助我解決這個問題嗎?
我已經提到this,但它對我沒有好處。
你可以單獨加載它們嗎? –