Spirng中關於不同的設定檔中的Bean能否互相引用

來源:互聯網
上載者:User

 拆分成多個以後,bean的配置可以放在其中一個檔案中,不必在每個檔案中都複製。   
 多個檔案,比如applicationContext-datasource.xml(資料來源的)、applicationContext- hibernate.xml、applicationContext-service.xml

 

你只需要在web.xml中配置:  
          <context-param>  
                  <param-name>contextConfigLocation</param-name>  
                  <param-value>  
                          /WEB-INF/applicationContext-*.xml  
                  </param-value>  
          </context-param>   
 這樣spring就可以把多個檔案同時裝載。

 

同樣在struts-config.xml中也可以實現:

<plug-in
  className="org.springframework.web.struts.ContextLoaderPlugIn">
  <set-property property="contextConfigLocation"
   value="/WEB-INF/classes/Spring-model-config.xml,/WEB-INF/classes/Spring-web-config.xml" />
 </plug-in>

以外掛程式的形式載入多個設定檔。

 

事實上它們的原理都一樣,只要記憶體中有了想要的Bean就可以了。


  在一個設定檔中的bean想要引用另一個檔案中的bean,可以使用  
  <property   name="dataSource"><ref   bean="dataSource"/></property>  
  這樣拿到。注意是bean=,而不是local=。  
  如果是使用local=表示從當前設定檔中尋找bean,如果bean是在其他檔案中則用bean=來找。  

 

總結:最好保持一個applicationContext.xml的原設定檔,並在原檔案中匯入其它設定檔,這樣可以方便調用所有的bean,比如在測試時候可以context =  new ClassPathXmlApplicationContext("applicationContext.xml");載入所有bean。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.