Maven配置tomcat服务器和ApplicationContext应用上下文获取方法

举报
执久呀 发表于 2022/10/22 21:11:33 2022/10/22
【摘要】 ​ 目录Maven配置tomcat服务器使用maven手动创建web工程 ApplicationContext应用上下文获取方法web.xml下配置监听器优化代码解耦合1解耦合2Maven配置tomcat服务器首先这得是war包,如果这是普通包得添加webapp,并将pom.xml中加入如下,表示这是一个web文件 <packaging>war</packaging>​编辑加完之后点击编辑...

 目录


Maven配置tomcat服务器

使用maven手动创建web工程

 ApplicationContext应用上下文获取方法

web.xml下配置监听器

优化代码

解耦合1

解耦合2



Maven配置tomcat服务器

首先这得是war包,如果这是普通包得添加webapp,并将pom.xml中加入如下,表示这是一个web文件

  <packaging>war</packaging>

编辑


加完之后点击编辑配置

编辑

 其下的war二选一即可

编辑

 完成之后点击确认即可完成配置。

使用maven手动创建web工程

第一步,点击项目结构,选中 要添加的maven工程,右键添加web。

编辑

 第二步,点击web工程,修改web工程路径

编辑

 点击完成即可完成web工程的手动配置。

 ApplicationContext应用上下文获取方法

应用上下文对象是通过new  ClasspathXmlApplicationContext(spring配置文件)方式获取的,但是每次从容器中获得Bean时都要编写new  ClasspathXmlApplicationContext(spring配置文件),这样的弊端是配置文件加载多次,应用上下文对象创建多次。

在Web项目中,可以使用ServletContextListener监听Web应用的启动,我们可以在Web应用启动时,就加载Sprina的配置文件,创建应用上下文对象ApplicationContext,在将其存储到最大的域servletContext域中,这样就可以在任意位置从域中获得应用上下文ApplicationContext对象了。


新建一个Listenter包下的ContextLoderListener

package com.Listener;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

public class ContextLoaderListener implements ServletContextListener {
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
        //将Spring的应用上下文对象存储到ServletContext域中
        ServletContext servletContext = servletContextEvent.getServletContext();
        servletContext.setAttribute("app", app);
        System.out.println("Spring容器创建完毕");

    }
    public void contextDestroyed(ServletContextEvent servletContextEvent) {

    }
}

web包下

package com.web;

import com.service.*;
import org.springframework.context.ApplicationContext;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

@WebServlet("/user")
public class UserServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
     //   ApplicationContext app= new ClassPathXmlApplicationContext("applicationContext.xml");
    ServletContext servletContext = req.getServletContext();
    ApplicationContext app = (ApplicationContext) servletContext.getAttribute("app");
    UserService userService=app.getBean(UserService.class);

    }
}

web.xml下配置监听器

<?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">
    <!--配置监听器-->
    <listener>
        <listener-class>com.Listener.ContextLoaderListener</listener-class>
    </listener>



</web-app>

自动创建spring容器

优化代码

解耦合1

由于监听器内部我们将代码写固定了,不利于后期的维护操作,所以要解耦合,写在配置文件中进行解耦合。(“”引号内的名字任意)

ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");

将此个代码写入到web.xml中进

<!--全局初始化参数-->
    <context-param>
     <!--name和value为任意  -->
        <param-name>ContextConfigLocation</param-name>
        <param-value>applicationContext.xml</param-value>
    </context-param>

在ContextLoaderListenter类中

package com.Listener;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

public class ContextLoaderListener implements ServletContextListener {
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        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容器创建完毕");

    }

}

读取配置文件的值,这样就完成了解耦合

解耦合2

在userServlet类中 

ApplicationContext app = (ApplicationContext) servletContext.getAttribute("app");

这样耦合了app代码,让这个只能叫做app,这样不利于后期维护和辨认。

所以我们这么改,在Listener包下创建一个工具类WebApplicationContextUtils

package com.Listener;

import org.springframework.context.ApplicationContext;

import javax.servlet.ServletContext;

public class WebApplicationContextUtils {
    public static ApplicationContext getApplicationContext(ServletContext servletContext){
        return (ApplicationContext) servletContext.getAttribute("app");
    }
}

在userServlet处代码修改为

package com.web;

        import com.Listener.WebApplicationContextUtils;
        import com.service.*;
        import org.springframework.context.ApplicationContext;

        import javax.servlet.ServletContext;
        import javax.servlet.ServletException;
        import javax.servlet.annotation.WebServlet;
        import javax.servlet.http.HttpServlet;
        import javax.servlet.http.HttpServletRequest;
        import javax.servlet.http.HttpServletResponse;
        import java.io.IOException;

@WebServlet("/user")
public class UserServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //   ApplicationContext app= new ClassPathXmlApplicationContext("applicationContext.xml");
        ServletContext servletContext = req.getServletContext();
        //ApplicationContext app = (ApplicationContext) servletContext.getAttribute("app");
     //变动处
        ApplicationContext app = WebApplicationContextUtils.getApplicationContext(servletContext);
        UserService userService=app.getBean(UserService.class);

    }
}


【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。