Spring容器的创建过程之如何注册BeanPostProcessor详解
注册BeanPostProcessor
refresh()
调用registerBeanPostProcessors(beanFactory)
方法,注册Bean的后置处理器,后置处理器是用来拦截bean创建过程的。
不同接口类型的BeanPostProcessor
,即继承了BeanPostProcessor
接口的子接口,在Bean创建前后的执行时机是不一样的
BeanPostProcessor
DestructionAwareBeanPostProcessor
InstantiationAwareBeanPostProcessor
SmartInstantiationAwareBeanPostProcessor
MergedBeanDefinitionPostProcessor
首先获取所有的BeanPostProcessor
后置处理器都默认可以通过PriorityOrdered
、Ordered
这两个接口来指定执行优先级
先注册实现了priorityOrdered
优先级接口的BeanPostProcessor
,调用registerBeanPostProcessors()
方法进行注册
registerBeanPostProcessors()
方法调用addBeanPostProcessor()
方法将BeanPostProcessor
添加到BeanFactory
中
再注册实现了Ordered
优先级接口的BeanPostProcessor
最后注册没有实现任何优先级接口的BeanPostProcessor
最终注册MergedBeanDefinitionPostProcessor
类型的BeanPostProcessor
还会注册一个ApplicationListenerDetector
来在Bean创建完成后检查是否ApplicationListener
,如果是,就会把这个监听器bean放在容器中保存起来
到此这篇关于Spring容器的创建过程之如何注册BeanPostProcessor详解的文章就介绍到这了,更多相关注册BeanPostProcessor内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Spring Boot 与 Kotlin 使用Redis数据库的配置方法
Redis是目前业界使用最广泛的内存数据存储。下面通过本文给大家介绍Spring Boot 与 Kotlin 使用Redis数据库的配置方法,感兴趣的朋友一起看看吧2018-01-01
最新评论