Spring与Web环境集成
一级目录
1.1、ApplicationContext引用上下文获取方式
应用上下文对象是通过new ClasspathXmlApplicationContext(Spring配置文件)方式获取的,但是每次从
容器中获得Bean时都要编写new ClasspathXmlApplicationContext(Spring配置文件),这样的弊端是配置
文件加载多次,应用上下文对象创建多次
在Web项目中,可以使用ServletContextListener监听Web应用的启动,我们可以在Web引用启动时,就
加载Spring的配置文件,创建应用上下文对象ApplicationContext,在将其存储到最大的域servletContext
域中,这样就可以在任意位置从域中获得应用上下文ApplicationContext对象了
在Web项目中,可以使用ServletContextListener监听Web应用的启动,我们可以在Web引用启动时,就
加载Spring的配置文件,创建应用上下文对象ApplicationContext,在将其存储到最大的域servletContext
域中,这样就可以在任意位置从域中获得应用上下文ApplicationContext对象了
public class ContextLoaderListener implements ServletContextListener {
/**
* 上下文初始化方法
* @param servletContextEvent
*/
@Override
public void contextInitialized(ServletContextEvent servletContextEvent) {
// ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
ServletContext servletContext = servletContextEvent.getServletContext();
// 读取web.xml中的全局参数
String contextConfigLocation = servletContext.getInitParameter("contextConfigLocation");
ApplicationContext app = new ClassPathXmlApplicationContext(contextConfigLocation);
// 将Spring的引用上下文对象存储到ServletContext域中
servletContext.setAttribute("app",app);
System.out.println("spring容器创建完毕....");
}
/*
* 上下文销毁的方法
* @param servletContextEvent
*/
@Override
public void contextDestroyed(ServletContextEvent servletContextEvent) {
}
}
public class WebApplicationContextUtils {
public static ApplicationContext getWebApplicaTionContext(ServletContext servletContext) {
return (ApplicationContext) servletContext.getAttribute("app");
}
}
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<!--全局初始化参数-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!--配置监听器-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--
<listener>
<listener-class>com.itheima.listener.ContextLoaderListener</listener-class>
</listener>
-->
<servlet>
<servlet-name>UserServlet</servlet-name>
<servlet-class>com.itheima.web.UserServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>UserServlet</servlet-name>
<url-pattern>/userServlet</url-pattern>
</servlet-mapping>
</web-app>
public class UserServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
ServletContext servletContext = this.getServletContext();
// ApplicationContext app = (ApplicationContext) servletContext.getAttribute("app");
// ApplicationContext app = WebApplicationContextUtils.getWebApplicaTionContext(servletContext);
ApplicationContext app = WebApplicationContextUtils.getWebApplicationContext(servletContext);
UserService userService = app.getBean(UserService.class);
userService.save();
}
}
1.2 Spring 提供获取应用上下文的工具
上面的分析不用手动实现,Spring提供了一个监听器 ContextLocaderListener 就是对上手功能的封装,该监听
器内部加载Spring配置文件,创建应用上下文对象,并存储到 ServletContext 域中,提供了一个客户端工具
WebApplicationContextUtils 供使用者获得上下文对象。
所以我们需要做的只有两件事:
在 web.xml 中配置 ContextLoaderListener 监听器(导入spring-web坐标)
使用 WebApplicationContextUtils 获得应用上下文对象 ApplicationContext