一、ServletContext是什么?
ServletContext是一个web应用的上下文,是一个全局信息的存储空间,代表当前web应用。
二、ServletContext什么时候创建?
ServletContext在web应用(服务器)启动时创建。
三、ServletContext什么时候销毁?
ServletContext在Web应用(服务器)关闭时释放。
四、ServletContext包含哪些东西?
可以debug源码看一下:
其中parameters参数是web.xml配置文件中
五、ServletContext与Spring容器(ApplicationContext)的关系(第三步ApplicationContext创建过程会在以后详细介绍)?
1、ServletContext创建之后,然后读取
2、触发ServletContextEvent事件,ServletContextListener监听这个事件,ServletContextListener有两个抽象方法,分别是ServletContext初始化时调用方法和ServletContext销毁时调用的方法。
public interface ServletContextListener extends EventListener { void contextInitialized(ServletContextEvent var1); void contextDestroyed(ServletContextEvent var1); }
3、ContextLoaderListener实继承ContextLoader并实现ServletContextListener,所以也监听ServletContextEvent事件,事件触发后ContextLoaderListener会执行初始化方法。
@Override
public void contextInitialized(ServletContextEvent event) {
initWebApplicationContext(event.getServletContext());
}
六、Spring容器(ApplicationContext)创建过程?
1、ContextLoaderListener监听ServletContextEvent事件,执行初始化contextInitialized(ServletContextEvent event)方法;
2、先判断是否已经创建过ApplicationContext;
if (servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE) != null) { throw new IllegalStateException( "Cannot initialize context because there is already a root application context present - " + "check whether you have multiple ContextLoader* definitions in your web.xml!"); }
3、创建WebApplicationContext对象(Spring容器);
if (this.context == null) {
this.context = createWebApplicationContext(servletContext);
}
4、转换成ConfigurableWebApplicationContext 对象;
ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) this.context;
5、执行configureAndRefreshWebApplicationContext方法,封装ApplicationContext上下文数据,其中会从ServletContext中读取applicationContext.xml配置,调用refresh方法完成所有bean的解析初始化创建。
configureAndRefreshWebApplicationContext(cwac, servletContext);
//从ServletContext中读取applicationContext.xml配置
String configLocationParam = sc.getInitParameter(CONFIG_LOCATION_PARAM); if (configLocationParam != null) { wac.setConfigLocation(configLocationParam); }
.....
//初始化相关bean并创建java对象 customizeContext(sc, wac); wac.refresh();
6、ConfigurableWebApplicationContext 创建之后放到ServletContext中;
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);
六、bean的解析初始化创建过程没有详细,感兴趣的可以看下源码。