本文共 2879 字,大约阅读时间需要 9 分钟。
我们在使用SpringMVC的时候,做的第一件事情是配置ContextLoaderListener的监听器,这个监听器的作用,就是启动web容器的时候,自动装配ApplicationContext的配置信息,因为ContextLoaderListener实现了ServletContextListener接口,便会将ApplicationContext放置到servletContext中。
/** * Initialize the root web application context */@Overridepublic void contextInitialized(ServletContextEvent event) { super.initWebApplicationContext(event.getServletContext());}
/** * Initialize Spring's web application context for the given servlet context, */public WebApplicationContext initWebApplicationContext(ServletContext servletContext) { // 判断web.xml中存在多次ContextLoader定义 if (servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE) != null) { throw new IllegalStateException( "...."); } try { if (this.context == null) { // 初始化context (重点) this.context = createWebApplicationContext(servletContext); } if (this.context instanceof ConfigurableWebApplicationContext) { ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) this.context; if (!cwac.isActive()) { if (cwac.getParent() == null) { ApplicationContext parent = loadParentContext(servletContext); cwac.setParent(parent); } configureAndRefreshWebApplicationContext(cwac, servletContext); } } // 将webApplicationContext放入到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; } catch (RuntimeException ex) { } }
创建contextClass这段代码就是创建webApplicationContext的核心,当前类的ContextLoader同样目录下一定会存在属性文件:ContextLoader.properties**org.springframework.web.context.WebApplicationContext=org.springframework.web.context.support.XmlWebApplicationContext**然后通过反射的机制,进行实体类的创建protected Class determineContextClass(ServletContext servletContext) { String contextClassName = servletContext.getInitParameter(CONTEXT_CLASS_PARAM); if (contextClassName != null) { return ClassUtils.forName(contextClassName, ClassUtils.getDefaultClassLoader()); } else { contextClassName = defaultStrategies.getProperty(WebApplicationContext.class.getName()); return ClassUtils.forName(contextClassName, ContextLoader.class.getClassLoader()); }}
整个源码跟踪下来,可以简单的归纳一下:
转载地址:http://pmhqa.baihongyu.com/