WebApplicationContext的三个实现类:XMLWebApplicationContext、GroovyWebApplicationContext和AnnotationConfigWebApplicationContext。
应用上下文的初始化
XmlWebApplcationContext
XmlWebApplcationContext是传统的基于xml的Bean的定义。
web.xml中我们会添加一个ContextLoaderListener的listener,首先它实现了ServletContextListener接口,可以接收上下文初始化完成和销毁的事件。同时ContextLoaderListener还继承了ContextLoader类,从介绍来看ContextLoader的作用是执行根应用上下文的初始化工作。
初始化WebApplicationContext
监听器接收到ServletContext初始化完成的事件后,就由ContextLoader开始初始化WebApplicationContext:首先从ServletContext中查找是否有自定义的contextClass,如未找到则使用默认策略(spring-web包中的ContextLoader.properties), XmlWebApplicationContext的完整路径就配置在其中;然后加载上下文类型的class,并初始化。
为根应用上下文添加父上下文
对于纯web应用来说,其根应用上下文的父上下文为NULL。
刷新根应用上下文
- 将ServletContext关联给根应用上下文;
- 将contextConfigLocation的值记录到根应用上下文;
初始化PropertySource(分别从servletContextInitParams、servletConfigInitParams、jndiProperties、systemProperties、systemEnvironment中加载),且该动作在每次上下文刷新的时候都会执行一次。
个性化上下文:从ServletContext的初始化参数中查找globalInitializerClasses和contextInitializerClasses,并对initializer进行排序,然后依次初始化根应用上下文。
-
根应用上下文执行刷新动作
准备工作:将上下文设置为已生效;初始化PropertySource等
刷新BeanFactory:清空bean并关闭BeanFactory(置为NULL),然后创建新的并配置BeanFactory(DefaultListableBeanFactory),如是否允许同名bean覆盖就的bean、是否允许bean之间的循环引用。之后就会加载BeanDefinition,慢慢接近我们的主题。
-
准备BeanFactory:
- 配置bean初始化后的处理(BeanPostProcessor)
- 注册ResolveableDependency
- 检查是否有bean需要load-time-waving,若有为BeanFactory添加BeanPostProcessor--LoadTimeWeaverAwareProcessor
- 注册默认environment bean
// Allows post-processing of the bean factory in context subclasses. postProcessBeanFactory(beanFa // Invoke factory processors registered as beans in the context. invokeBeanFactoryPostProcessors(beanFa // Register bean processors that intercept bean creation. registerBeanPostProcessors(beanFa // Initialize message source for this context. initMessageSo // Initialize event multicaster for this context. initApplicationEventMultica // Initialize other special beans in specific context subclasses. onRef // Check for listener beans and register them. registerListe // Instantiate all remaining (non-lazy-init) singletons. finishBeanFactoryInitialization(beanFa // Last step: publish corresponding event. finishRefresh();
为ServletContext添加新的属性
属性值为根应用上下文。
加载BeanDefinition
为BeanFactory新建XmlBeanDefinitionReader,加载并从Root开始解析xml配置文件,并遍历各级的节点。节点的类型可以有:import、alias、bean和beans。根据类型的不同的处理,最后都会集中在处理bean类型的节点。将bean节点映射成BeanDefinitionHolder,并在BeanFactory中注册,key为bean的name,valude为BeanDefinition对象。由BeanFactory的ConcurrentHashMap类型的成员变量持有。
注册完成后,发出组件注册事件,并创建BeanComponentDefinition对象。改对象持有改bean内部bean的定义和外部bean的引用(BeanReference)