关于Spring中的context:property-placeholder 导入多个独立的配置文件

来源:互联网 发布:黄海波真相 知乎 编辑:程序博客网 时间:2024/06/06 08:46

最近项目里面实现的功能比较多,也继承了一些第三方的插件

所以applicationContext文件里面的配置会增加,当我们需要 多个 properties文件的时候,一开始<context:property-placeholder  location:"" >使用的时候,会出现引入两个properties文件报错。

找了一下网上的资源:http://my.oschina.net/tinglanrmb32/blog/409115

下面是大神的解答:

spring中 context:property-placeholder 导入多个独立的 .properties配置文件?

Spring容器采用反射扫描的发现机制,在探测到Spring容器中有一个 org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的 Bean就会停止对剩余PropertyPlaceholderConfigurer的扫描(Spring 3.1已经使用PropertySourcesPlaceholderConfigurer替代 PropertyPlaceholderConfigurer了)。


换句话说,即Spring容器仅允许最多定义一个PropertyPlaceholderConfigurer(或<context:property-placeholder/>),其余的会被Spring忽略掉(其实Spring如果提供一个警告就好了)。

拿上来的例子来说,如果A和B模块是单独运行的,由于Spring容器都只有一个PropertyPlaceholderConfigurer, 因此属性文件会被正常加载并替换掉。如果A和B两模块集成后运行,Spring容器中就有两个 PropertyPlaceholderConfigurer Bean了,这时就看谁先谁后了, 先的保留,后的忽略!因此,只加载到了一个属性文件,因而造成无法正确进行属性替换的问题。


咋解决呢?

通配符解决

<context:property-placeholder location="classpath*:conf/conf*.properties"/>  


0 0
原创粉丝点击