Tomcat+Spring中的几个ApplicationContext以及它们的关系

我们以只有1个Servlet的简单情况为例,一般涉及到3个配置文件:web.xml,applicationContext.xml,xxx-servlet.xml。

web.xml:


         contextConfigLocation
         classpath:/applicationContext.xml


         org.springframework.web.context.ContextLoaderListener


         xxx
         org.springframework.web.servlet.DispatcherServlet
         1


         xxx
         *.html

在这种情况下,系统会生成2个ApplicationContext,确切的说是2个WebApplicationContext:

 

一)ROOT ApplicationContext

在Tomcat启动时,通过注册的监听器ContextLoaderListener,Spring初始化WebApplicationContext并保存到ServletContext中,初始化使用的配置文件位置由contextConfigLocation参数确定。该Context为整个框架中的ROOT Context,其他的Context都会作为其子节点或子孙节点进行关联。

WebApplicationContext和ServletContext互相保存对方的引用:

//保存到ServletContext中
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,this.context);
//保存ServletContext
wac.setServletContext(sc);

 

二)xxx ApplicationContext

Tomcat生成xxx Servlet时,DispatcherServlet会使用xxx-servlet.xml(除非显示指定其他文件)初始化WebApplicationContext,将其父节点设为ROOT Context,并保存到ServletContext中。

在createWebApplicationContext()方法中,设置父节点:

wac.setParent(parent);

在configureAndRefreshWebApplicationContext()方法中保存ServletContext:

wac.setServletContext(getServletContext());
wac.setServletConfig(getServletConfig());

在initWebApplicationContext()方法中将自己保存到ServletContext中:

// Publish the context as a servlet context attribute.
String attrName = getServletContextAttributeName();
getServletContext().setAttribute(attrName, wac);

ServletContext、ROOT Context和xxx Context三者引用之间的关系如下:

Tomcat+Spring中的几个ApplicationContext以及它们的关系_第1张图片

 

获取的方法:

1.      ServletContext:

无论是在ROOT还是xxx Context中,都可以通过WebApplicationContext. getServletContext();

2.      ROOT Context:

该Context是” org.springframework.web.context. WebApplicationContext. ROOT”为Key保存在ServletContext中。可以使用Spring提供的工具类方法获取:

WebApplicationContextUtils.getWebApplicationContext(ServletContext sc)

在xxx Context中可以通过getParent得到ROOT Context。

3.      xxx Context:

该Context是以” org.springframework.web.servlet.FrameworkServlet.CONTEXT.xxx”为KEY(xxx为web.xml中定义的Servlet名称),保存在ServletContext中。可以使用Spring提供的工具类方法获取:

WebApplicationContextUtils.getWebApplicationContext(ServletContextsc, String attrName)

 

 

你可能感兴趣的:(Tomcat+Spring中的几个ApplicationContext以及它们的关系)