spring配置文件加载

web.xml

contextConfigLocation
/WEB-INF/applicationContext.xml

通过listener加载

org.springframework.web.context.ContextLoaderListener

或者利用severlet类加载

context 
org.springframework.web.context.ContextLoaderServlet
1 
 
第二种方式:
使用Struts插件
在struts-config.xml中



 这两种配置的明显区别就是,第一种方式可以配置多个spring配置文件。

 

你可能感兴趣的:(spring)