除去properites文件路徑錯誤、拼寫錯誤外,出現"Could not resolve placeholder"頗有多是使用了多個PropertyPlaceholderConfigurer或者多個<context:property-placeholder>的緣由。web
好比我有一個dao.xml讀取dbConnect.properties,還有一個dfs.xml讀取dfsManager.properties,而後web.xml統一load這兩個xml文件spring
若是這兩個xml文件中分別有spa
那麼,必定會出"Could not resolve placeholder"。xml
必定要記住,無論是在一個Spring文件仍是在多個Spring文件被統一load的狀況下,直接寫blog
是不容許的。get
解決方案:it
(1) 在Spring 3.0中,能夠寫:io
注意兩個都要加上ignore-unresolvable="true",一個加另外一個不加也是不行的class
(2) 在Spring 2.5中,<context:property-placeholder>沒有ignore-unresolvable屬性,此時能夠改用PropertyPlaceholderConfigurer。其實<context:property-placeholder location="xxx.properties" ignore-unresolvable="true" />與下面的配置是等價的配置
正由於如此,寫多個PropertyPlaceholderConfigurer不加ignoreUnresolvablePlaceholders屬性也是同樣會出"Could not resolve placeholder"。
雖然二者是的等價的,但估計你們仍是喜歡寫<context:property-placeholder>多一些,畢竟簡單一些嘛。因此若是是Spring 3.0,直接用解決方案(1)再簡單不過了;若是是Spring 2.5,須要費點力氣改寫成PropertyPlaceholderConfigurer