Spring context:property-placeholder 一些坑
Posted lonecloud
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring context:property-placeholder 一些坑相关的知识,希望对你有一定的参考价值。
今天在配置多配置文件的时候偶然发现如果我使用
1 <context:property-placeholder location="classpath:filePath.properties"/>
这个进行多行编写配置文件的时候会出现后面那个文件出现读取不到的问题
1 <context:property-placeholder location="classpath:jdbc.properties"/> 2 <context:property-placeholder location="classpath:filePath.properties"/>
这样会导致后面那个配置文件失效
原因:Spring 只会加载第一个context:property-placeholder配置后面的文件将不会再次进行加载,所以导致后面的文件读取不到
解决办法:
<context:property-placeholder ignore-unresolvable="true" location="classpath:jdbc.properties,classpath:filePath.properties"/>
加入一个ignore-unresolvable="true"属性,将文件用,隔开就可以了
以上是关于Spring context:property-placeholder 一些坑的主要内容,如果未能解决你的问题,请参考以下文章
Spring全家桶笔记:Spring+Spring Boot+Spring Cloud+Spring MVC
学习笔记——Spring简介;Spring搭建步骤;Spring的特性;Spring中getBean三种方式;Spring中的标签
Spring框架--Spring事务管理和Spring事务传播行为