could not resolve placeholder ${}

阅读更多
用spring 配置加载properties文件的时候,报Could not resolve placeholder 错误。
很有可能是使用了多个PropertyPlaceholderConfigurer或者多个的原因或者是多个PropertyPlaceholderConfigurer与混合使用。
解决方案:
在Spring3中可以用如下方式解决,找到所有
增加 ignore-unresolvable="true"属性,注意必须都要加上
  


在Spring 2.5中,没有ignore-unresolvable属性,此时可以改用PropertyPlaceholderConfigurer。其实与下面的配置是等价的
  
      
       
  


这次报错因为配了 而没有配置

你可能感兴趣的:(xml,el表达式,properties)