Spring中報"Could not resolve placeholder"的解決方案 .

除去properites文件路徑錯誤、拼寫錯誤外,出現"Could not resolve placeholder"頗有多是使用了多個PropertyPlaceholderConfigurer或者多個<context:property-placeholder>的緣由。web

 

  好比我有一個dao.xml讀取dbConnect.properties,還有一個dfs.xml讀取dfsManager.properties,而後web.xml統一load這兩個xml文件spring

Xml代碼   收藏代碼
  1. <context-param>  
  2.         <param-name>contextConfigLocation</param-name>  
  3.         <param-value>  
  4.                 WEB-INF/config/spring/dao.xml,   
  5.                 WEB-INF/config/spring/dfs.xml  
  6.         </param-value>  
  7. </context-param>  

若是這兩個xml文件中分別有spa

Xml代碼   收藏代碼
  1. <!-- dao.xml -->  
  2. <context:property-placeholder location="WEB-INF/config/db/dbConnect.properties" />  
  3.   
  4. <!-- dfs.xml -->  
  5. <context:property-placeholder location="WEB-INF/config/dfs/dfsManager.properties" />  

那麼,必定會出"Could not resolve placeholder"。xml

 

  必定要記住,無論是在一個Spring文件仍是在多個Spring文件被統一load的狀況下,直接寫blog

Xml代碼   收藏代碼
  1. <context:property-placeholder location="" />  
  2. <context:property-placeholder location="" />   

是不容許的。get

 

解決方案:it

  (1) 在Spring 3.0中,能夠寫:io

Xml代碼   收藏代碼
  1. <context:property-placeholder location="xxx.properties" ignore-unresolvable="true"  
  2. />  
  3. <context:property-placeholder location="yyy.properties" ignore-unresolvable="true"  
  4. />  

注意兩個都要加上ignore-unresolvable="true",一個加另外一個不加也是不行的class

 

  (2) 在Spring 2.5中,<context:property-placeholder>沒有ignore-unresolvable屬性,此時能夠改用PropertyPlaceholderConfigurer。其實<context:property-placeholder location="xxx.properties" ignore-unresolvable="true" />與下面的配置是等價的配置

Java代碼   收藏代碼
  1. <bean id="隨便" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  2.     <property name="location" value="xxx.properties" />  
  3.     <property name="ignoreUnresolvablePlaceholders" value="true" />   
  4. </bean>  

  正由於如此,寫多個PropertyPlaceholderConfigurer不加ignoreUnresolvablePlaceholders屬性也是同樣會出"Could not resolve placeholder"。

 

  雖然二者是的等價的,但估計你們仍是喜歡寫<context:property-placeholder>多一些,畢竟簡單一些嘛。因此若是是Spring 3.0,直接用解決方案(1)再簡單不過了;若是是Spring 2.5,須要費點力氣改寫成PropertyPlaceholderConfigurer

相關文章
相關標籤/搜索