- 在Servlet的init方法中加载Spring配置文件?
- 当前这个Servlet可以使用,但是其他的Servlet的用不了了!!!
- 将加载的信息内容放到ServletContext中.ServletContext对象时全局的对象.服务器启动的时候创建的.在创建ServletContext的时候就加载Spring的环境.
- ServletContextListener:用于监听ServletContext对象的创建和销毁的.
- 导入spring-web-3.2.0.RELEASE.jar
- 在web.xml中配置:
<!-- 将spring创建和初始化交给web容器管理,加上监听ServletContext对象的创建和销毁的 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>