百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 编程网 > 正文

SpringMVC的父子容器你都了解了吗?

yuyutoo 2024-10-26 16:07 1 浏览 0 评论

环境:Spring5.3.23


配置文件

如果我们不使用基于注解的方式,那么在Spring Web项目一般我们都会在web.xml文件中做如下的配置:

web.xml

 <web-app>
   <listener>
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
   </listener>
   <context-param>
     <param-name>contextConfigLocation</param-name>
     <param-value>/WEB-INF/app-context.xml</param-value>
   </context-param>
   <servlet>
     <servlet-name>app</servlet-name>
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
     <init-param>
       <param-name>contextConfigLocation</param-name>
       <param-value></param-value>
     </init-param>
     <load-on-startup>1</load-on-startup>
   </servlet>
   <servlet-mapping>
     <servlet-name>app</servlet-name>
     <url-pattern>/app/*</url-pattern>
   </servlet-mapping>
 </web-app>

父容器初始化

通过在web.xml中还会配置一个监听器,而这个监听器的作用就是初始化父容器的

 <listener>
   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>

上面配置的监听程序是用来初始化父容器。

 public class ContextLoader {
   private WebApplicationContext context;
   private static final Properties defaultStrategies;
   public static final String CONFIG_LOCATION_PARAM = "contextConfigLocation";
   static {
     try {
       private static final String DEFAULT_STRATEGIES_PATH = "ContextLoader.properties";
       // 从类路径下查找ContextLoader.properties文件
       ClassPathResource resource = new ClassPathResource(DEFAULT_STRATEGIES_PATH, ContextLoader.class);
       // 加载配置文件;默认情况下会从spring-web-xxx.jar包下的org.springframework.web.context包下有该文件
       // 文件内容:org.springframework.web.context.WebApplicationContext=\
       // org.springframework.web.context.support.XmlWebApplicationContext
       // 也就是默认情况下实例化的是XmlWebApplicationContext容器对象
       defaultStrategies = PropertiesLoaderUtils.loadProperties(resource);
     }
   }
   protected WebApplicationContext createWebApplicationContext(ServletContext sc) {
     // 获取容器ApplicationContext具体的类的Class对象
     Class<?> contextClass = determineContextClass(sc);
     // 实例化XmlWebApplicationContext对象,该对象就是基于xml的配置的解析类
     return (ConfigurableWebApplicationContext) BeanUtils.instantiateClass(contextClass);
   }
   protected Class<?> determineContextClass(ServletContext servletContext) {
     public static final String CONTEXT_CLASS_PARAM = "contextClass";
     // 获取在web.xml中配置的context-param参数名称为contextClass;这里其实就是配置你要使用哪个ApplicationContext容器对象
     String contextClassName = servletContext.getInitParameter(CONTEXT_CLASS_PARAM);
     // 如果配置了使用你配置的ApplicationContext容器的具体对象
     if (contextClassName != null) {
       try {
         return ClassUtils.forName(contextClassName, ClassUtils.getDefaultClassLoader());
       }
     } else {
       // 如果没有在web.xml配置文件中配置contextClass参数,则通过下面的方式获取
       // 这里获取的就是上面static代码段中加载的配置
       contextClassName = defaultStrategies.getProperty(WebApplicationContext.class.getName());
       try {
         return ClassUtils.forName(contextClassName, ContextLoader.class.getClassLoader());
       }
     }
   }
   protected void configureAndRefreshWebApplicationContext(ConfigurableWebApplicationContext wac,ServletContext sc) {
     wac.setServletContext(sc);
     // 获取在web.xml中配置的上下文参数(context-param), 名称为contextConfigLocation的参数值
     String configLocationParam = sc.getInitParameter(CONFIG_LOCATION_PARAM);
     if (configLocationParam != null) {
       // 如果配置了设置配置文件路径
       wac.setConfigLocation(configLocationParam);
     }
     // 执行刷新,也就是解析处理上面配置的spring配置文件
     // 如果没有配置上面的contextConfigLocation参数,那么会读取默认的applicationContext.xml配置文件
     // 查看XmlWebApplicationContext类
     wac.refresh();
   }
 }
 public class ContextLoaderListener extends ContextLoader implements ServletContextListener {
   public void contextInitialized(ServletContextEvent event) {
     initWebApplicationContext(event.getServletContext());
   }
   public WebApplicationContext initWebApplicationContext(ServletContext servletContext) {
     try {
       if (this.context == null) {
         // 创建容器,在父类中创建出XmlWebApplicationContext对象
         this.context = createWebApplicationContext(servletContext);
       }
       // mlWebApplicationContext实现了ConfigurableWebApplicationContext接口
       if (this.context instanceof ConfigurableWebApplicationContext) {
         ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) this.context;
         // 确定此应用程序上下文是否处于活动状态,即它是否已刷新至少一次且尚未关闭。
         if (!cwac.isActive()) {
           // ...
           // 刷新上下文
           configureAndRefreshWebApplicationContext(cwac, servletContext);
         }
       }
       // 将实例化的ApplicationContext保存到ServletContext对象中
       servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);
 
       ClassLoader ccl = Thread.currentThread().getContextClassLoader();
       if (ccl == ContextLoader.class.getClassLoader()) {
         currentContext = this.context;
       }
       else if (ccl != null) {
         currentContextPerThread.put(ccl, this.context);
       }
       return this.context;
     }
   }
 }
 public class XmlWebApplicationContext extends AbstractRefreshableWebApplicationContext {
   public static final String DEFAULT_CONFIG_LOCATION = "/WEB-INF/applicationContext.xml";
   public static final String DEFAULT_CONFIG_LOCATION_PREFIX = "/WEB-INF/";
   public static final String DEFAULT_CONFIG_LOCATION_SUFFIX = ".xml";
   
   protected String[] getDefaultConfigLocations() {
     if (getNamespace() != null) {
       return new String[] {DEFAULT_CONFIG_LOCATION_PREFIX + getNamespace() + DEFAULT_CONFIG_LOCATION_SUFFIX};
     } else {
       return new String[] {DEFAULT_CONFIG_LOCATION};
     }
   }
   protected void loadBeanDefinitions(DefaultListableBeanFactory beanFactory) {
     loadBeanDefinitions(beanDefinitionReader);
   }
   protected void loadBeanDefinitions(XmlBeanDefinitionReader reader) throws IOException {
     // 调用父类AbstractRefreshableWebApplicationContext方法
     String[] configLocations = getConfigLocations();
     if (configLocations != null) {
       for (String configLocation : configLocations) {
         reader.loadBeanDefinitions(configLocation);
       }
     }
   }
 }
 // XmlWebApplicationContext在执行refresh的时候有这么一步
 public abstract class AbstractApplicationContext extends DefaultResourceLoader
     implements ConfigurableApplicationContext {
   public void refresh() {
     ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();
   }
   protected ConfigurableListableBeanFactory obtainFreshBeanFactory() {
     refreshBeanFactory();
     return getBeanFactory();
   }
 }
 public abstract class AbstractRefreshableWebApplicationContext extends AbstractRefreshableConfigApplicationContext
     implements ConfigurableWebApplicationContext, ThemeSource {
   public String[] getConfigLocations() {
     return super.getConfigLocations();
   }
 }
 public abstract class AbstractRefreshableConfigApplicationContext extends AbstractRefreshableApplicationContext
     implements BeanNameAware, InitializingBean {
   protected String[] getConfigLocations() {
     // 如果没有配置,则调用默认的方法调用子类XmlWebApplicationContext重写的方法
     return (this.configLocations != null ? this.configLocations : getDefaultConfigLocations());
   }
 }
 public abstract class AbstractRefreshableApplicationContext extends AbstractApplicationContext {
   protected final void refreshBeanFactory() throws BeansException {
     // 调用子类XmlWebApplicationContext重写的方法
     loadBeanDefinitions(beanFactory);
   }
 }

总结:

  • 从配置文件中获取contextClass参数
    如果没有则读取spring-web-xxx.jar中org.springframework.web.context包下的ContextLoader.properties文件
    目的就是容器实例化具体ApplicationContext那个子类对象。

  • 刷新初始化ApplicationContext对象
    这里具体的类是XmlWebApplicationContext对象。
    1. 首先是设置要读取的配置文件
    读取web.xml中配置的<context-param>参数contextConfigLocation,如果没有设置该 参数,则使用默认的/WEB-INF/applicationContext.xml
    2. 调用refresh初始化spring容器

  • 保存spring容器对象
    实例化后会将该容器对象保存到ServletContext中,以WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE为name存入。

子容器初始化

子容器的初始化就是DispatcherServlet配置的<init-param>参数

 public abstract class HttpServletBean extends HttpServlet implements EnvironmentCapable, EnvironmentAware {
   public final void init() throws ServletException {
 
     // 这里代码的作用就是用来读取DispatcherServlet配置的contextConfigLocation参数,然后设置到
     // FrameworkServlet中的contextConfigLocation属性中
     // 这里就是通过BeanWrapper来完成此操作
     PropertyValues pvs = new ServletConfigPropertyValues(getServletConfig(), this.requiredProperties);
     if (!pvs.isEmpty()) {
       try {
         BeanWrapper bw = PropertyAccessorFactory.forBeanPropertyAccess(this);
         ResourceLoader resourceLoader = new ServletContextResourceLoader(getServletContext());
         bw.registerCustomEditor(Resource.class, new ResourceEditor(resourceLoader, getEnvironment()));
         initBeanWrapper(bw);
         bw.setPropertyValues(pvs, true);
       }
     }
     // 到这里就设置完了配置在DispatcherServlet中的contextConfigLocation参数
     
     // 初始化Servlet Bean
     initServletBean();
   }
 }

FrameworkServlet

 public abstract class FrameworkServlet extends HttpServletBean implements ApplicationContextAware {
   public static final Class<?> DEFAULT_CONTEXT_CLASS = XmlWebApplicationContext.class;
   public static final String DEFAULT_NAMESPACE_SUFFIX = "-servlet";
   // 该值在父类的init方法中已经通过BeanWrapper设置搞定了,当如如果没有配置会有默认机制的,下面会看到
   private String contextConfigLocation;
   protected final void initServletBean() throws ServletException {
     this.webApplicationContext = initWebApplicationContext();
   }
   protected WebApplicationContext initWebApplicationContext() {
     // 从ServletContext中读取在上面(初始化父容器)设置的WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE
     // 容器对象
     WebApplicationContext rootContext =
         WebApplicationContextUtils.getWebApplicationContext(getServletContext());
     WebApplicationContext wac = null;
     // ...
     if (wac == null) {
       // 查找容器
       // 这里默认还是返回null,这里就是看你在配置DispatcherServlet的时候有没有配置contextAttribute属性
       // 如果你设置了该属性,会从ServletContext中读取配置的contextAttribute属性对应的值(该值必须是WebApplicationContext)
       // 如果不是则抛出异常
       wac = findWebApplicationContext();
     }
     if (wac == null) {
       // 到这还没有容器对象,则创建容器对象,同时这里的rootContext会作为父容器
       wac = createWebApplicationContext(rootContext);
     }
     return wac;
   }
   protected WebApplicationContext createWebApplicationContext(@Nullable WebApplicationContext parent) {
     return createWebApplicationContext((ApplicationContext) parent);
   }
   protected WebApplicationContext createWebApplicationContext(@Nullable ApplicationContext parent) {
     // 这里就是获取要实例化的默认ApplictionContext对象,XmlWebApplicationContext
     Class<?> contextClass = getContextClass();
     // 实例化
     ConfigurableWebApplicationContext wac =
         (ConfigurableWebApplicationContext) BeanUtils.instantiateClass(contextClass);
     wac.setEnvironment(getEnvironment());
     // 设置父容器
     wac.setParent(parent);
     // 获取要读取加载的配置文件,如果你没有则就是null
     String configLocation = getContextConfigLocation();
     // 如果你没有配置,不进入
     if (configLocation != null) {
       wac.setConfigLocation(configLocation);
     }
     // 刷新上下文
     configureAndRefreshWebApplicationContext(wac);
 
     return wac;
   }
   protected void configureAndRefreshWebApplicationContext(ConfigurableWebApplicationContext wac) {
     wac.setServletContext(getServletContext());
     wac.setServletConfig(getServletConfig());
     // 这里就非常关键了,记住你这里有了namespace的值
     wac.setNamespace(getNamespace());
     wac.addApplicationListener(new SourceFilteringListener(wac, new ContextRefreshListener()));
 
     ConfigurableEnvironment env = wac.getEnvironment();
     if (env instanceof ConfigurableWebEnvironment) {
       ((ConfigurableWebEnvironment) env).initPropertySources(getServletContext(), getServletConfig());
     }
 
     postProcessWebApplicationContext(wac);
     applyInitializers(wac);
     // 这里refresh的过程就和上面初始化父容器的流程一样了,会查找使用的那些xml配置文件
     wac.refresh();
   }
   public String getNamespace() {
     // 根据你配置的<servlet-name>xxx</servlet-name>名称拼接
     // 默认就返回:xxx-servlet(xxx就是你配置的servlet名称)
     return (this.namespace != null ? this.namespace : getServletName() + DEFAULT_NAMESPACE_SUFFIX);
   }
   public String getContextConfigLocation() {
     return this.contextConfigLocation;
   }
 }
 // 如果你没有配置contextConfigLocation,那么就找默认的配置xml文件
 public class XmlWebApplicationContext extends AbstractRefreshableWebApplicationContext {
   public static final String DEFAULT_CONFIG_LOCATION = "/WEB-INF/applicationContext.xml";
   public static final String DEFAULT_CONFIG_LOCATION_PREFIX = "/WEB-INF/";
   public static final String DEFAULT_CONFIG_LOCATION_SUFFIX = ".xml";
   
   protected String[] getDefaultConfigLocations() {
     // 上面看到了我们的getNamespace设置了值,则进入
     if (getNamespace() != null) {
       // 这里就拼接成:/WEB-INF/xxx-servlet.xml(也就是,如果你没有为DispatcherServlet配置contextConfigLocation属性)
       return new String[] {DEFAULT_CONFIG_LOCATION_PREFIX + getNamespace() + DEFAULT_CONFIG_LOCATION_SUFFIX};
     } else {
       return new String[] {DEFAULT_CONFIG_LOCATION};
     }
   }
 }

总结:

  • 读取Servlet配置参数
    读取配置DispatcherServlet时配置的参数,通过BeanWrapper设置当前Servlet对应的属性中。

  • 实例化Spring容器对象
    1. 实例化Spring容器对象
    2. 设置容器对象的配置文件
    如果你为Servlet配置了contextConfigLocation,则使用该参数对应的值作为子容器解 析的xml配置文件
    3. 设置名称空间namespace
    根据你配置的servlet名称 + '-servlet'作为名称空间

  • 刷新Spring容器
    调用refresh方法;如果你没有配置contextConfigLocation,则会查找默认的配置文件,而这个默认配置在XmlWebApplicationContext已经重写了,会判断当前的namespace是否为空,不为空则返回/WEB-INF/xxx-servlet.xml (xxx: 取值根据你配置的servlet-name)。

完毕!!!

SpringBoot对Spring MVC都做了哪些事?(一)
SpringBoot对Spring MVC都做了哪些事?(二)
SpringBoot对Spring MVC都做了哪些事?(三)
SpringBoot对Spring MVC都做了哪些事?(四)
Spring中的@Configuration注解你真的了解吗?
Spring MVC 异常处理方式
Spring中字段格式化的使用详解
Spring MVC 异步请求方式
Spring容器这些扩展点你都清楚了吗?
Spring 自定义Advisor以编程的方式实现AOP
SpringBoot WebFlux整合Spring Security进行权限认证
SpringBoot项目中应用Spring Batch批处理框架,处理大数据新方案
Spring Security权限控制系列(七)

相关推荐

jQuery VS AngularJS 你更钟爱哪个?

在这一次的Web开发教程中,我会尽力解答有关于jQuery和AngularJS的两个非常常见的问题,即jQuery和AngularJS之间的区别是什么?也就是说jQueryVSAngularJS?...

Jquery实时校验,指定长度的「负小数」,小数位未满末尾补0

在可以输入【负小数】的输入框获取到焦点时,移除千位分隔符,在输入数据时,实时校验输入内容是否正确,失去焦点后,添加千位分隔符格式化数字。同时小数位未满时末尾补0。HTML代码...

如何在pbootCMS前台调用自定义表单?pbootCMS自定义调用代码示例

要在pbootCMS前台调用自定义表单,您需要在后台创建表单并为其添加字段,然后在前台模板文件中添加相关代码,如提交按钮和表单验证代码。您还可以自定义表单数据的存储位置、添加文件上传字段、日期选择器、...

编程技巧:Jquery实时验证,指定长度的「负小数」

为了保障【负小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【负小数】的方法。HTML代码<inputtype="text"class="forc...

一篇文章带你用jquery mobile设计颜色拾取器

【一、项目背景】现实生活中,我们经常会遇到配色的问题,这个时候去百度一下RGB表。而RGB表只提供相对于的颜色的RGB值而没有可以验证的模块。我们可以通过jquerymobile去设计颜色的拾取器...

编程技巧:Jquery实时验证,指定长度的「正小数」

为了保障【正小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【正小数】的方法。HTML做成方法<inputtype="text"class="fo...

jquery.validate检查数组全部验证

问题:html中有多个name[],每个参数都要进行验证是否为空,这个时候直接用required:true话,不能全部验证,只要这个数组中有一个有值就可以通过的。解决方法使用addmethod...

Vue进阶(幺叁肆):npm查看包版本信息

第一种方式npmviewjqueryversions这种方式可以查看npm服务器上所有的...

layui中使用lay-verify进行条件校验

一、layui的校验很简单,主要有以下步骤:1.在form表单内加上class="layui-form"2.在提交按钮上加上lay-submit3.在想要校验的标签,加上lay-...

jQuery是什么?如何使用? jquery是什么功能组件

jQuery于2006年1月由JohnResig在BarCampNYC首次发布。它目前由TimmyWilson领导,并由一组开发人员维护。jQuery是一个JavaScript库,它简化了客户...

django框架的表单form的理解和用法-9

表单呈现...

jquery对上传文件的检测判断 jquery实现文件上传

总体思路:在前端使用jquery对上传文件做部分初步的判断,验证通过的文件利用ajaxFileUpload上传到服务器端,并将文件的存储路径保存到数据库。<asp:FileUploadI...

Nodejs之MEAN栈开发(四)-- form验证及图片上传

这一节增加推荐图书的提交和删除功能,来学习node的form提交以及node的图片上传功能。开始之前需要源码同学可以先在git上fork:https://github.com/stoneniqiu/R...

大数据开发基础之JAVA jquery 大数据java实战

上一篇我们讲解了JAVAscript的基础知识、特点及基本语法以及组成及基本用途,本期就给大家带来了JAVAweb的第二个知识点jquery,大数据开发基础之JAVAjquery,这是本篇文章的主要...

推荐四个开源的jQuery可视化表单设计器

jquery开源在线表单拖拉设计器formBuilder(推荐)jQueryformBuilder是一个开源的WEB在线html表单设计器,开发人员可以通过拖拉实现一个可视化的表单。支持表单常用控件...

取消回复欢迎 发表评论: