ContextLoaderListener的作用

1. 概述

在web应用启动的,ContextLoaderListener读取contextConfigLocation中定义的xml文件,自动装配ApplicationContext的配置信息,并产生WebApplicationContext对象,然后将这个对象放置在ServletContext的属性里,这样我们就可以在servlet里得到WebApplicationContext对象。

2. 源码分析

  • ContextLoaderListener继承关系
public class ContextLoaderListener extends ContextLoader implements ServletContextListener{ 
...
}

ContextLoader: 可以指定Web应用程序启动时,载入IOC容器的配置文件地址;
ServletContextListener:接口里的函数,会结合Web容器的生命周期被调用;ServletContextListener是ServletContext的监听者。

在服务器启动时,由于ServletContext加载,contextInitialized方法会被调用,进而初始化WebApplicationContext。

@Override
    public void contextInitialized(ServletContextEvent event) {
        initWebApplicationContext(event.getServletContext());
    }

initWebApplicationContext()负责创建IOC容器

public WebApplicationContext initWebApplicationContext(ServletContext servletContext) {
    ...
    //初始化容器
    configureAndRefreshWebApplicationContext(cwac, servletContext);
    ...
}
protected void configureAndRefreshWebApplicationContext(ConfigurableWebApplicationContext wac, ServletContext sc) {
  ...
  //调用refresh方法,初始化容器
  wac.refresh();
  ...
}

需要注意: ServletContextListener是web组件,真正实例化它的是tomcat;ContextLoader是spring容器的组件,用来初始化容器。

你可能感兴趣的:(ContextLoaderListener的作用)