context:property-placeholder

泪湿孤枕 提交于 2019-12-09 16:52:51

这个在spring中配置文件中是非常常用的。

一、context:property-placeholder大大的方便了我们一些配置的加载,尤其是数据库方面

 

 

 

 同样也方便了我们系统中的一些设置:

 

 

 二、ignore-unresolvable

同个模块中如果出现多个context:property-placeholder ,location properties文件后,运行时出现Could not resolve placeholder 'key' in string value${key}。原因是在加载第一个context:property-placeholder时会扫描所有的bean,而有的bean里面出现第二个 context:property-placeholder引入的properties的占位符${key},此时还没有加载第二个property-placeholder,所以解析不了${key}。

解决:

办法一,可以将通过模块的多个property-placeholder合并为一个,将初始化放在一起。

方法二,添加ignore-unresolvable="true",这样可以在加载第一个property-placeholder时出现解析不了的占位符进行忽略掉。

 

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!