拆分成多個以後,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。