【重温SSM框架系列】4 - Spring集成web环境(三层结构和配置监听器)

一起养成写作习惯!这是我参与「掘金日新计划 · 4 月更文挑战」的第4天,点击查看活动详情

三层架构环境搭建

在前面Spring核心配置文件以及数据源配置的讲解中,主要是在dao层和service层,现在我们就把web层环境也给他集成进来。

目前的项目结构

在这里插入图片描述

搭建web层

1. 引入servlet和jsp依赖

<!-- 引入Servlet和JSP依赖 -->
<dependency>
   <groupId>javax.servlet</groupId>
   <artifactId>javax.servlet-api</artifactId>
   <version>3.1.0</version>
   <scope>provided</scope>
</dependency>
<dependency>
   <groupId>javax.servlet.jsp</groupId>
   <artifactId>javax.servlet.jsp-api</artifactId>
   <version>2.2.1</version>
   <scope>provided</scope>
</dependency>
复制代码

2. 创建UserServlet类

@WebServlet("/userServlet")
public class UserServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        ApplicationContext application = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userService = (UserService) application.getBean("userService");
        userService.save();
    }
}
复制代码

3. 配置Tomcat并启动测试

在这里插入图片描述 启动Tomcat并访问/UserServlet,控制台打印如下,三层架构基本环境搭建成功。 在这里插入图片描述

三层架构基本项目结构

在这里插入图片描述

设置获取applicationContext.xml的监听器

现在出现了一个问题:每次从容器中获得Bean时,都需要ApplicationContext application = new ClassPathXmlApplicationContext("applicationContext.xml"),当配置文件多次加载时,就会创建很多个ApplicationContext对象,造成资源的浪费。

在Web项目中,我们运用监听器的特性,创建一个配置文件加载的监听器,在应用启动的时候就加载Spring的配置文件,并创建ApplicationContext 对象;当要使用时,直接从域中获取即可,达到一处加载处处使用的效果。

在web.xml中配置核心配置文件的位置

  <context-param>
    <param-name>applicationContextLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
复制代码

创建一个ContextLoaderListener类

public class ContextLoaderListener implements ServletContextListener {
    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        ServletContextEvent sce;
        ServletContext servletContext = servletContextEvent.getServletContext();

        // 读取web.xml中配置的Spring核心配置文件的位置
        String applicationContextLocation = servletContext.getInitParameter("applicationContextLocation");

        // 创建ApplicationContext上下文对象
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext(applicationContextLocation);

        // 将ApplicationContext对象存到域中
        servletContext.setAttribute("applicationContext",applicationContext);

        System.out.println("创建ApplicationContext对象成功:" + applicationContext);
    }

    @Override
    public void contextDestroyed(ServletContextEvent servletContextEvent) {

    }
}
复制代码

在web.xml中配置ContextLoaderListener监听器

<listener>
  <listener-class>com.wang.listener.ContextLoaderListener</listener-class>
</listener>
复制代码

启动Tomcat,查看控制台打印,发现ApplicationContext对象在Tomcat启动时被创建: 在这里插入图片描述

修改UserServlet,使用监听器获取ApplicationContext

@WebServlet("/userServlet")
public class UserServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//        ApplicationContext application = new ClassPathXmlApplicationContext("applicationContext.xml");
        ApplicationContext application = (ApplicationContext) req.getServletContext().getAttribute("applicationContext");
        UserService userService = (UserService) application.getBean("userService");
        userService.save();
    }
}
复制代码

使用Spring集成ContextLoaderListener监听器

上面通过自定义监听器的方式实现了在应用启动的时候就加载Spring的配置文件,并创建ApplicationContext 对象。但是这个过程还是比较复杂,可以使用Spring提供获取应用上下文的工具直接获取上下文对象。

引入spring-web包

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>5.0.5.RELEASE</version>
</dependency>
复制代码

修改web.xml配置Spring的ContextLoaderListener监听器

<listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
复制代码

使用Spring工具获得应用上下文对象

@WebServlet("/userServlet")
public class UserServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//        ApplicationContext application = new ClassPathXmlApplicationContext("applicationContext.xml");
//        ApplicationContext application = (ApplicationContext) req.getServletContext().getAttribute("applicationContext");
        ApplicationContext application = WebApplicationContextUtils.getWebApplicationContext(req.getServletContext());
        UserService userService = (UserService) application.getBean("userService");
        userService.save();
    }
}
复制代码

猜你喜欢

转载自juejin.im/post/7084047613024010247