spring中web.xml指定配置文件
<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-beans.xml</param-value> </context-param>
指定多个配置文件用,隔开。
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
在web应用启动的,ContextLoaderListener读取contextConfigLocation中定义的xml文件,自动装配ApplicationContext的配置信息,
并产生WebApplicationContext对象,然后将这个对象放置在ServletContext的属性里,
这样我们就可以在servlet里得到WebApplicationContext(spring容器上下文)对象。