spring 配置多个properties
Posted free
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring 配置多个properties相关的知识,希望对你有一定的参考价值。
复制多份,保证有效的配置文件,属性时true就行
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath*:redis.properties</value>
</list>
</property>
<property name="ignoreUnresolvablePlaceholders" value="true" />
</bean>
以上是关于spring 配置多个properties的主要内容,如果未能解决你的问题,请参考以下文章