用户启动web容器(比如tomcat)后
1. web服务器启动(注意和web容器的区分)
2.web容器(确切的说是Servlet容器)启动
2.1 从web.xml中拿到所有<context-param>,实例化ServletContext(ServletContext实例中,除了有web.xml中的Context-param外,还有很多的环境信息,自己看吧)
一个web application对应一个ServletContext实例(注意和ServletConfig实例的区分:ServletContext是整个web application的上下文,而ServletConfig是一个Servlet的上下文)
2.2 ServletContext实例化完成后,会发出事件ServletContextEvent(当然了,这个event中可以得到ServletContext实例)
2.3 从web.xml中拿到所有的ServletContextListener,挨个通知。
这些ServletContextListener中就有一个ContextLoaderListener,用于初始化Spring的根(或者叫父)容器。这个容器的DisplayName是“ROOT WebApplicationContext”。这个根容器是使用web.xml中“contextConfigLocation”这个参数指定的xml文件(定义了bean)进行初始化的(这里还可以深入看下Spring找到bean的配置文件,然后加载bean的过程)。
这个容器初始化完成后,就此容器设置成ServletContext的一个属性,并将ServletContext设置到“ROOT WebApplicationContext”中。
2.4 如果web.xml中的某个servlet配置了<load-on-startup>,则会初始化这个servlet。
比如在web.xml中配置了DispatcherServlet,那就开始执行DispatcherServlet的初始化工作。
DispatcherServlet首先调用父类FrameworkServlet的初始化函数,其负责“Servlet WebApplication” Spring容器的创建, 并将“ROOT WebApplicationContext”设置成父容器。此后,DispatcherServlet开始初始化自己的组件(参见DispatcherServlet中的initStrategies方法)。