这个在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时出现解析不了的占位符进行忽略掉。