02-Spring IOC和AOP源码学习
Spring IOC容器的创建,以AnnotationConfigApplicationContext为例,下面是AnnotationConfigApplicationContext的类图
AnnotationConfigApplicationContext 有两个重要的成员变量 AnnotatedBeanDefinitionReader reader 和 ClassPathBeanDefinitionScanner scanner。
见文识意 AnnotatedBeanDefinitionReader 应该是手动把bean注册到IOC,ClassPathBeanDefinitionScanner 应该是把扫描的路径下的bean注册到IOC。
public static void main(String[] args) {
AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
//扫描路径下的bean
ctx.scan("com.chw.test");
//动态添加Bean
ctx.register(Bean1.class);
//刷新
ctx.refresh();
}
refresh方法是在AbstractApplicationContext中实现的,只能调用一次,调用第二次会报错。下面是IOC启动主要流程。
@Override
public void refresh() throws BeansException, IllegalStateException {
synchronized (this.startupShutdownMonitor) {
// 刷新前的准备工作
prepareRefresh();
// 创建beanFactory
ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();
// 为bean工厂的使用添加了一些Aware
prepareBeanFactory(beanFactory);
try {
// 子类对beanfactory做加工处理
postProcessBeanFactory(beanFactory);
// 调用所有已注册的BeanFactoryPostProcessor处理器
invokeBeanFactoryPostProcessors(beanFactory);
// 注册并实例化所有的BeanPostProcessor处理器
registerBeanPostProcessors(beanFactory);
// 国际化处理
initMessageSource();
// 初始化化多播器
initApplicationEventMulticaster();
// 需要子类实现
onRefresh();
// 注册监听器,需要实现ApplicationListener
registerListeners();
// bean的实例化
finishBeanFactoryInitialization(beanFactory);
// 发布注册完成事件
finishRefresh();
}
catch (BeansException ex) {
if (logger.isWarnEnabled()) {
logger.warn("Exception encountered during context initialization - " +
"cancelling refresh attempt: " + ex);
}
// Destroy already created singletons to avoid dangling resources.
destroyBeans();
// Reset 'active' flag.
cancelRefresh(ex);
// Propagate exception to caller.
throw ex;
}
finally {
// Reset common introspection caches in Spring's core, since we
// might not ever need metadata for singleton beans anymore...
resetCommonCaches();
}
}
}
主要分为以下步骤:
1、prepareRefresh : 刷新前准备工作
2、obtainFreshBeanFactory:创建BeanFactory
3、prepareBeanFactory:bean工厂的准备
4、postProcessBeanFactory:子类拓展
5、invokeBeanFactoryPostProcessors:实例化实现了BeanFactoryPostProcessor接口的bean,并调用postProcessBeanFactory
6、registerBeanPostProcessors:实例化实现了BeanPostProcessor接口的bean
7、initMessageSource:国际化处理
8、initApplicationEventMulticaster:初始化广播器
9、onRefresh:子类拓展
10、registerListeners:注册监听器
11、finishBeanFactoryInitialization:bean的创建(特别复杂,建议使用流程图来记录代码的过程),大概流程——resolveBeanClass:解析bean;createBeanInstance:实例化;populateBean:赋值;initializeBean:初始化
12、finishRefresh:完成刷新,事件广播
下期介绍finishBeanFactoryInitialization的流程