上下文:属性占位符不适用于多个文件
2022-09-02 23:28:03
我有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>
我尝试过的上述两种方法都不起作用。
任何人都可以找出错误并帮助我摆脱这种情况吗?
我已经提到了这一点,但它对我不利。