ContextLoaderListener

Spring MVC中的Web.XML会配置两个类ContextLoaderListener和DispatchServlet。

先看一下ServletContextListener。

ServletContextListener实现了ServletContextListener接口,ServletContextListener是Servlet API中的接口,可以监听Servlet容器比如Tomcat的生命周期,初始化(contextInitialized方法)和销毁阶段(contextDestroyed方法)。这样在Servlet容器启动的时候就会调用ContextLoaderListener的contextInitialized 方法。


ContextLoaderListener_第1张图片

initWebApplicationContext方法在父类ContextLoader中实现


ContextLoaderListener_第2张图片

先判断ServletContext中是否有了该属性,如果有抛异常,只能有一个实例。


ContextLoaderListener_第3张图片

createWebApplicationContext根据web.xml配置的contextClass属性实例化一个WebApplicationContext的子类,没有配的话从目录下ContextLoader.properties里查找默认为:

org.springframework.web.context.WebApplicationContext=org.springframework.web.context.support.XmlWebApplicationContext,这个是下面提到的ROOT容器。

如果ROOT容器没有父容器,那么通过loadParentContext方法去加载配置的父容器,(需要两个参数locatorFactorySelector和parentContextKey)。

最后刷新容器configureAndRefreshWebApplicationContext


ContextLoaderListener_第4张图片

最开始设置ID,获取配置文件地址

customizeContext是可扩展的操作


ContextLoaderListener_第5张图片

通过determineContextInitializerClasses方法获取配置的ApplicationContextInitializer子类


ContextLoaderListener_第6张图片

globalInitializerClasses代表所有的web application都会应用

contextInitializerClasses代表只有当前的web application会使用

这些实现类作为一个集合,转化为class类型,并实例化对象,添加到contextInitializers中。通过AnnotationAwareOrderComparator通过ApplicationContextInitializer的Order注解排序。

最后调用ApplicationContextInitializer的initialize方法。

可以在这里改变容器的属性。

最后刷新容器包括:

启动DefaultListBeanFactory,加载配置文件,加载BeanFactoryPostProcessor并调用其方法,初始化BeanPostProcessor,初始化事件广播和监听,以及发布启动时间等

给Servlet配置关联容器的属性

最后获取当前线程的上下文类加载器

看是否是当前ContextLoader的类加载器

如果是说明Web和Spring放一起用的都是一个ClassLoader

否则需要把当前现成的上下文类加载器和容器相映射。

你可能感兴趣的:(ContextLoaderListener)