web容器初始化时,因为配置了spring的ContextLoaderListener,所以会执行ContextLoaderListener的contextInitialized(ServletContextEvent event) 方法。
在这个方法中,
public void contextInitialized(ServletContextEvent event) {
this.contextLoader = createContextLoader();
if (this.contextLoader == null) {
this.contextLoader = this;
}
[color=red]this.contextLoader.initWebApplicationContext(event.getServletContext());[/color]
}
在initWebApplicationContext中,又调用
this.context = [color=red]createWebApplicationContext[/color](servletContext, parent);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);
这样,在容器初始化时,就在servletcontext中设定了key为 WebApplicationContext.class.getName() + ".ROOT"
value为ApplicationContext
的初始上下文。
所以,通过WebApplicationContextUtils的
public static WebApplicationContext [color=red]getRequiredWebApplicationContext[/color](ServletContext sc)
即可取得上下文。
在这个方法中,
public void contextInitialized(ServletContextEvent event) {
this.contextLoader = createContextLoader();
if (this.contextLoader == null) {
this.contextLoader = this;
}
[color=red]this.contextLoader.initWebApplicationContext(event.getServletContext());[/color]
}
在initWebApplicationContext中,又调用
this.context = [color=red]createWebApplicationContext[/color](servletContext, parent);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);
这样,在容器初始化时,就在servletcontext中设定了key为 WebApplicationContext.class.getName() + ".ROOT"
value为ApplicationContext
的初始上下文。
所以,通过WebApplicationContextUtils的
public static WebApplicationContext [color=red]getRequiredWebApplicationContext[/color](ServletContext sc)
即可取得上下文。