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