文章目录:Spring源码深度解析:文章目录
我们先通过Spring的BeanFactoryPostProcessor的流程图,来了解Spring的BeanFactoryPostProcessor 的工作流程是什么,接着根据这个工作流程一步一步的阅读源码
本文分析的方法是 AbstractApplicationContext#invokeBeanFactoryPostProcessors方法
PS : 个人感觉,实现IOC的两个核心后处理器 :
ConfigurationClassPostProcessor
解析配置类(这里的配置类不仅仅局限于 @Configuration
注解,还包括 @Import
、 @ImportResource
等注解),将解析到的需要注入到Spring容器中的bean的 BeanDefinition
保存起来AutowiredAnnotationBeanPostProcessor
解析bean中的 需要自动注入的bean @Autowired
和 @Inject @Value
注解。由于invokeBeanFactoryPostProcessors
方法中主要就是对BeanFactoryPostProcessor
的处理,所以这里简单的介绍一下 BeanFactoryPostProcessor
及其子接口 BeanDefinitionRegistryPostProcessor
。其结构如下图:
BeanFactoryPostProcessor概述:
BeanFactoryPostProcessor
接口定义了 BeanFactory
的后置处理器接口,该接口可以改变已经定义在 BeanFactory
中已注册Bean的信息(比如参数),Spring 在完成上下文实例化之前,允许我们通过 BeanFactoryPostProcessor
来对 BeanFactory
中已注册的Bean进行修改,从而得实例化到我们预期想要的Bean,这种方式兼顾了扩展性,也是 Spring 强大灵活,扩展性高的部分原因。
BeanFactoryPostProcessor
相比较于 BeanPostProcessor
方法是很简单的,只有一个方法,其子接口也就一个方法。但是他们俩的功能又是类似的,区别就是作用域并不相同。BeanFactoryPostProcessor
的作用域范围是容器级别的。它只和你使用的容器有关。如果你在容器中定义一个BeanFactoryPostProcessor ,它仅仅对此容器中的bean进行后置处理。BeanFactoryPostProcessor
不会对定义在另一个容器中的bean进行后置处理,即使这两个容器都在同一容器中。BeanFactoryPostProcessor
可以对 bean的定义(配置元数据)进行处理。Spring IOC 容器允许 BeanFactoryPostProcessor
在容器实际实例化任何其他bean之前读取配置元数据,并有可能修改它,也即是说 BeanFactoryPostProcessor
是直接修改了bean的定义,BeanPostProcessor
则是对bean创建过程中进行干涉。
BeanDefinitionRegistryPostProcessor 和 BeanFactoryPostProcessor 的区别在于:
BeanDefinitionRegistryPostProcessor#postProcessBeanDefinitionRegistry()
方法针对是BeanDefinitionRegistry
类型的ConfigurableListableBeanFactory
,可以实现对BeanDefinition
的增删改查等操作,但是对于非 ConfigurableListableBeanFactory
类型的BeanFactory
,并不起作用。
BeanFactoryPostProcessor#postProcessBeanFactory()
针对的是所有的BeanFactory
。
postProcessBeanDefinitionRegistry
的调用时机在postProcessBeanFactory
之前。
BeanFactoryPostProcessor
接口定义了postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
方法,该方法作用是在BeanFactory
实例化Bean之前,对其中的BeanDefinition
进行修改参数等一系列操作,入参是一个 BeanFactory
,但是从我们之前的学习当中我们知道Spring中的 BeanFactory
其实是一个叫DefaultListableBeanFactory
类型的BeanFactory
,那么入参当中的ConfigurableListableBeanFactory
和DefaultListableBeanFactory
为什么关系呢?我们来通过下面提到的DefaultListableBeanFactory
的继承关系图。我们看到 DefaultListableBeanFactory
实现了ConfigurableListableBeanFactory
。这一点在 Spring源码深度解析:三、容器的刷新 - refresh()中已经得到证实。
下面我们看看 DefaultListableBeanFactory
的结构图如下,可以看到DefaultListableBeanFactory
实现了 BeanDefinitionRegistry
接口。这点在下面的分析中会用到。
invokeBeanFactoryPostProcessors
方法的作用是激活BeanFactoryPostProcessor
和 BeanDefinitionRegistryPostProcessor
。
为了更好的了解下面的代码,我们先了解几个代码中的规则:
BeanFactoryPostProcessor
在本次分析中分为两种类型: BeanFactoryPostProcessor
和其子接口 BeanDefinitionRegistryPostProcessor
。BeanDefinitionRegistryPostProcessor
相较于 BeanFactoryPostProcessor
,增加了一个方法如下。
需要注意的是,BeanDefinitionRegistryPostProcessor#postProcessBeanDefinitionRegistry 这个方法仅仅针对于 BeanDefinitionRegistry
类型的BeanFactory
生效,这一点根据其入参就可以看到。
总结一下即 :BeanFactoryPostProcessor
针对所有的 BeanFactory
,即对于所有类型的BeanFactory
都会调用其方法;BeanDefinitionRegistryPostProcessor
仅对 BeanDefinitionRegistry
子类的BeanFactory
起作用,非BeanDefinitionRegistry
类型则直接处理即可。
BeanFactoryPostProcessor
的注入分为两种方式:
1、配置注入方式:即通过注解或者xml的方式动态的注入到容器中的BeanFactoryPostProcessor
2、硬编码注入方式: 这种方式是直接调用 AbstractApplicationContext#addBeanFactoryPostProcessor
方法将 BeanFactoryPostProcessor
添加到 AbstractApplicationContext.beanFactoryPostProcessors
属性中。其中硬编码注入的BeanFactoryPostProcessor
并不需要也不支持接口排序,而配置注入的方式因为Spring无法保证加载的顺序,所以通过支持PriorityOrdered、Ordered
排序接口的排序。
在下面代码分析中会有四个集合
1、regularPostProcessors
: 记录通过硬编码方式注册的BeanFactoryPostProcessor
类型的处理器
2、registryProcessors
:记录所有的BeanDefinitionRegistryPostProcessor
类型的处理器
3、currentRegistryProcessors
: 一个临时集合变量,记录通过配置方式注册的BeanDefinitionRegistryPostProcessor
类型的处理器
4、processedBeans
:记录当前记录所有即将或已经处理的beanName(包含:BeanFactoryPostProcessor
和 BeanDefinitionRegistryPostProcessor
),用于防止重复处理
其实调用顺序可以归纳为:1)、硬编码先于配置;2)、postProcessBeanDefinitionRegistry
先于postProcessBeanFactory
下面我们来看具体代码:
AbstractApplicationContext#invokeBeanFactoryPostProcessors() 方法内容如下
protected void invokeBeanFactoryPostProcessors(ConfigurableListableBeanFactory beanFactory) {
// getBeanFactoryPostProcessors方法获取了所有硬编码的bean工厂处理器
PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(beanFactory, getBeanFactoryPostProcessors());
// 默认情况下这里判断不会为空,在refresh方法调用的prepareBeanFactory方法内已经执行过这段代码了
if (beanFactory.getTempClassLoader() == null && beanFactory.containsBean(LOAD_TIME_WEAVER_BEAN_NAME)) {
// 添加bean后置处理器,负责调用实现了LoadTimeWeaverAware接口setLoadTimeWeaver方法的bean
beanFactory.addBeanPostProcessor(new LoadTimeWeaverAwareProcessor(beanFactory));
// 添加一个临时类加载器
beanFactory.setTempClassLoader(new ContextTypeMatchClassLoader(beanFactory.getBeanClassLoader()));
}
}
可以看到主要功能还是在PostProcessorRegistrationDelegate#invokeBeanFactoryPostProcessors(beanFactory, getBeanFactoryPostProcessors());
这一句上。我们先来看看 getBeanFactoryPostProcessors()
得到的是什么
AbstractApplicationContext类
// 用来增强或修改bean定义信息的集合
private final List<BeanFactoryPostProcessor> beanFactoryPostProcessors = new ArrayList<>();
@Override
public void addBeanFactoryPostProcessor(BeanFactoryPostProcessor postProcessor) {
Assert.notNull(postProcessor, "BeanFactoryPostProcessor must not be null");
this.beanFactoryPostProcessors.add(postProcessor);
}
/**
* Return the list of BeanFactoryPostProcessors that will get applied
* to the internal BeanFactory.
*/
public List<BeanFactoryPostProcessor> getBeanFactoryPostProcessors() {
return this.beanFactoryPostProcessors;
}
可以看到 getBeanFactoryPostProcessors()
方法仅仅是将 beanFactoryPostProcessors
集合返回了出去而已。那么 beanFactoryPostProcessors
集合是通过 add方法添加的。这就是我们上面提到过的,beanFactoryPostProcessors
实际上是硬编码形式注册的BeanDefinitionRegistryPostProcessor
类型的处理器集合。
通过上一步,我们可以知道 入参中的beanFactoryPostProcessors
集合是硬编码注册的 集合。对于下面的分析我们就好理解了。
下面代码主要是对于BeanDefinitionRegistry
类型 BeanFactory
的处理以及 BeanFactoryPostProcessor
调用顺序问题的处理。实际上并不复杂。
public static void invokeBeanFactoryPostProcessors(
ConfigurableListableBeanFactory beanFactory, List<BeanFactoryPostProcessor> beanFactoryPostProcessors) {
// 记录所有即将或已经处理的beanName,用于防止重复处理
Set<String> processedBeans = new HashSet<>();
// 对BeanDefinitionRegistry类型的处理,这里是交由BeanDefinitionRegistryPostProcessor来处理
// 这里判断BeanFactory如果是BeanDefinitionRegistry子类 则需要进行BeanDefinitionRegistryPostProcessor的处理,否则直接按照BeanFactoryPostProcessor处理即可。
// 关于为什么BeanDefinitionRegistry比较特殊上面也说过,因为BeanDefinitionRegistryPostProcessor只能处理BeanDefinitionRegistry的子类,所以这里需要区分是否是BeanDefinitionRegistry类型
if (beanFactory instanceof BeanDefinitionRegistry) {
// 下面逻辑看似复杂,其实就两步:
// 1. 获取所有硬编码的BeanDefinitionRegistryPostProcessor类型,激活postProcessBeanDefinitionRegistry方法
// 2. 获取所有配置的BeanDefinitionRegistryPostProcessor,激活postProcessBeanDefinitionRegistry方法
BeanDefinitionRegistry registry = (BeanDefinitionRegistry) beanFactory;
// 记录通过硬编码方式注册的BeanFactoryPostProcessor类型的处理器
List<BeanFactoryPostProcessor> regularPostProcessors = new ArrayList<>();
// 记录所有注册的BeanDefinitionRegistryPostProcessor类型的处理器(含有硬编码注册的和配置注入注册的)
List<BeanDefinitionRegistryPostProcessor> registryProcessors = new ArrayList<>();
// 遍历硬编码注册的后处理器(都保存AbstractApplicationContext#beanFactoryPostProcessors中,这里通过参数beanFactoryPostProcessors传递过来)
for (BeanFactoryPostProcessor postProcessor : beanFactoryPostProcessors) {
if (postProcessor instanceof BeanDefinitionRegistryPostProcessor) {
BeanDefinitionRegistryPostProcessor registryProcessor =
(BeanDefinitionRegistryPostProcessor) postProcessor;
registryProcessor.postProcessBeanDefinitionRegistry(registry);
// 将硬编码注册BeanDefinitionRegistryPostProcessor放到registryProcessors中
registryProcessors.add(registryProcessor);
}
else {
regularPostProcessors.add(postProcessor);
}
}
// 一个临时变量,记录通过配置方式注册的BeanDefinitionRegistryPostProcessor类型的处理器
List<BeanDefinitionRegistryPostProcessor> currentRegistryProcessors = new ArrayList<>();
// 获取所有的实现了BeanDefinitionRegistryPostProcessor的beanName
String[] postProcessorNames =
beanFactory.getBeanNamesForType(BeanDefinitionRegistryPostProcessor.class, true, false);
// 筛选出实现了PriorityOrdered接口的实现类,优先执行
for (String ppName : postProcessorNames) {
if (beanFactory.isTypeMatch(ppName, PriorityOrdered.class)) {
// 记录到currentRegistryProcessors中
currentRegistryProcessors.add(beanFactory.getBean(ppName, BeanDefinitionRegistryPostProcessor.class));
processedBeans.add(ppName);
}
}
// 进行排序
sortPostProcessors(currentRegistryProcessors, beanFactory);
// 以配置方式注册的且实现了PriorityOrdered接口的BeanDefinitionRegistryPostProcessor集合全部放到registryProcessors中
registryProcessors.addAll(currentRegistryProcessors);
// 激活 postProcessBeanDefinitionRegistry 方法
invokeBeanDefinitionRegistryPostProcessors(currentRegistryProcessors, registry);
// 清空临时变量currentRegistryProcessors的内容
currentRegistryProcessors.clear();
postProcessorNames = beanFactory.getBeanNamesForType(BeanDefinitionRegistryPostProcessor.class, true, false);
// 筛选出实现了Ordered接口的实现类,第二执行
for (String ppName : postProcessorNames) {
if (!processedBeans.contains(ppName) && beanFactory.isTypeMatch(ppName, Ordered.class)) {
currentRegistryProcessors.add(beanFactory.getBean(ppName, BeanDefinitionRegistryPostProcessor.class));
processedBeans.add(ppName);
}
}
// 排序
sortPostProcessors(currentRegistryProcessors, beanFactory);
// 以配置方式注册的且实现了Ordered接口的BeanDefinitionRegistryPostProcessor集合全部放到registryProcessors中
registryProcessors.addAll(currentRegistryProcessors);
// 激活
invokeBeanDefinitionRegistryPostProcessors(currentRegistryProcessors, registry);
// 清空临时变量currentRegistryProcessors的内容
currentRegistryProcessors.clear();
// 最后获取No-Ordered(没有实现排序)接口的 BeanDefinitionRegistryPostProcessor ,进行激活。
boolean reiterate = true;
while (reiterate) {
reiterate = false;
postProcessorNames = beanFactory.getBeanNamesForType(BeanDefinitionRegistryPostProcessor.class, true, false);
for (String ppName : postProcessorNames) {
if (!processedBeans.contains(ppName)) {
currentRegistryProcessors.add(beanFactory.getBean(ppName, BeanDefinitionRegistryPostProcessor.class));
processedBeans.add(ppName);
reiterate = true;
}
}
// 排序
sortPostProcessors(currentRegistryProcessors, beanFactory);
// 将配置方式注册的且没有实现排序(No-Ordered)接口的BeanDefinitionRegistryPostProcessor集合全部放到registryProcessors中
registryProcessors.addAll(currentRegistryProcessors);
// 激活
invokeBeanDefinitionRegistryPostProcessors(currentRegistryProcessors, registry);
// 清空临时变量currentRegistryProcessors的内容
currentRegistryProcessors.clear();
}
// 到这里,所有的 BeanDefinitionRegistryPostProcessor的postProcessBeanDefinitionRegistry()方法都已经激活结束。
// 开始激活postProcessBeanFactory方法
// 因为BeanDefinitionRegistryPostProcessor是BeanFactoryPostProcessor的子类,所有这里激活的是BeanDefinitionRegistryPostProcessor的postProcessBeanFactory()方法
invokeBeanFactoryPostProcessors(registryProcessors, beanFactory);
// regularPostProcessors中记录的是硬编码注入的BeanFactoryPostProcessor
invokeBeanFactoryPostProcessors(regularPostProcessors, beanFactory);
}
else {
// 如果 beanFactory instanceof BeanDefinitionRegistry = false,那么BeanDefinitionRegistryPostProcessor.postProcessBeanDefinitionRegistry()方法并不生效,就直接激活postProcessBeanFactory()方法即可。
// 激活硬编码注册的BeanFactoryPostProcessor.postProcessBeanFactory()方法
invokeBeanFactoryPostProcessors(beanFactoryPostProcessors, beanFactory);
}
// 到这一步,所有的硬编码方式注入的后处理器都处理完毕; 配置注入的BeanDefinitionRegistryPostProcessor后处理器的postProcessBeanDefinitionRegistry()和postProcessBeanFactory()方法都已经激活。
// 下面开始处理配置注入的BeanFactoryPostProcessor的postProcessBeanFactory后处理器。
// Do not initialize FactoryBeans here: We need to leave all regular beans
// uninitialized to let the bean factory post-processors apply to them!
// 获取所有后处理器的beanName,用于后面处理
String[] postProcessorNames =
beanFactory.getBeanNamesForType(BeanFactoryPostProcessor.class, true, false);
// Separate between BeanFactoryPostProcessors that implement PriorityOrdered,
// Ordered, and the rest.
// 创建几个保存不同排序的集合,按照实现的排序接口调用
// 筛选出实现了排序接口PriorityOrdered的类
List<BeanFactoryPostProcessor> priorityOrderedPostProcessors = new ArrayList<>();
// 筛选出实现了排序接口Ordered的类
List<String> orderedPostProcessorNames = new ArrayList<>();
// 筛选出未实现排序接口的类
List<String> nonOrderedPostProcessorNames = new ArrayList<>();
for (String ppName : postProcessorNames) {
if (processedBeans.contains(ppName)) {
// skip - already processed in first phase above
}
else if (beanFactory.isTypeMatch(ppName, PriorityOrdered.class)) {
priorityOrderedPostProcessors.add(beanFactory.getBean(ppName, BeanFactoryPostProcessor.class));
}
else if (beanFactory.isTypeMatch(ppName, Ordered.class)) {
orderedPostProcessorNames.add(ppName);
}
else {
nonOrderedPostProcessorNames.add(ppName);
}
}
// 排序和激活(实现了PriorityOrdered接口的后处理器)
sortPostProcessors(priorityOrderedPostProcessors, beanFactory);
invokeBeanFactoryPostProcessors(priorityOrderedPostProcessors, beanFactory);
// 排序和激活(实现了Ordered接口的后处理器)
List<BeanFactoryPostProcessor> orderedPostProcessors = new ArrayList<>();
for (String postProcessorName : orderedPostProcessorNames) {
orderedPostProcessors.add(beanFactory.getBean(postProcessorName, BeanFactoryPostProcessor.class));
}
sortPostProcessors(orderedPostProcessors, beanFactory);
invokeBeanFactoryPostProcessors(orderedPostProcessors, beanFactory);
// 排序和激活(没有实现排序接口的后处理器)
List<BeanFactoryPostProcessor> nonOrderedPostProcessors = new ArrayList<>();
for (String postProcessorName : nonOrderedPostProcessorNames) {
nonOrderedPostProcessors.add(beanFactory.getBean(postProcessorName, BeanFactoryPostProcessor.class));
}
invokeBeanFactoryPostProcessors(nonOrderedPostProcessors, beanFactory);
// 清除元数据缓存
beanFactory.clearMetadataCache();
}
}
这里的主要流程:
首先执行我们自定义通过AbstractApplicationContext.addBeanFactoryPostProcessor
方法添加进来的BeanFactory
后置处理器,然后调用这些beanFactory
后置处理器的postProcessBeanDefinitionRegistry
方法,并按类型分装到集合,方便后续统一调用父类BeanFactoryPostProcessor
类型的postProcessBeanFactory
方法
获取配置方式注册的所有BeanDefinitionRegistryPostProcessor
类型的beanFactory
后置处理器,遍历出实现了PriorityOrdered
接口的beanFactory
后置处理器,进行排序,放到临时存储集合中,然后调用这些 beanFactory
后置处理器的postProcessBeanDefinitionRegistry
方法;
获取配置方式注册的所有 BeanDefinitionRegistryPostProcessor
类型的beanFactory
后置处理器,遍历出实现了Ordered
接口的beanFactory
后置处理器,进行排序,放到临时存储集合中,然后调用这些beanFactory
后置处理器的 postProcessBeanDefinitionRegistry
方法;
获取配置方式注册的所有BeanDefinitionRegistryPostProcessor
类型的beanFactory
后置处理器,遍历出既不实现 PriorityOrdered
接口又不实现Ordered
接口的beanFactory
后置处理器,放到临时存储集合中,然后调用这些 beanFactory
后置处理器的postProcessBeanDefinitionRegistry
方法;
执行前三步放入临时集合当中配置方式注册的所有BeanDefinitionRegistryPostProcessor
类型的beanFactory
后置处理器的父类BeanFactoryPostProcessor
中的postProcessBeanFactory
方法,将前三步中处理的beanFactory
后置处理器放到一个临时集合中也是为了这一步操作考虑;
执行硬编码注入的beanFactory
后置处理器BeanFactoryPostProcessor
中的postProcessBeanFactory
方法
获取获取配置方式注册的所有BeanFactoryPostProcessor
类型的beanFactory
后置处理器,遍历出实现了PriorityOrdered
接口的beanFactory
后置处理器,进行排序,然后调用这些beanFactory
后置处理器的postProcessBeanFactory
方法;
获取获取配置方式注册的所有BeanFactoryPostProcessor
类型的beanFactory
后置处理器,遍历出实现了Ordered
接口的beanFactory
后置处理器,进行排序,然后调用这些beanFactory
后置处理器的 postProcessBeanFactory
方法;
获取获取配置方式注册的所有BeanFactoryPostProcessor
类型的beanFactory
后置处理器,遍历出既不实现 PriorityOrdered
接口又不实现Ordered
接口的beanFactory
后置处理器,然后调用这些 beanFactory
后置处理器的postProcessBeanFactory
方法;
到这里,所有的BeanFactory
后置处理器就执行完毕了,这里通过分析源码,我们知道了一个BeanFactoryPostProcessor
的子类BeanDefinitionRegistryPostProcessor
MyBeanDefinitionRegistryBean
和 MyRegularPostProcessorBean
)package com.wts.BeanFactoryPostProcessorTest;
public class MyBeanDefinitionRegistryBean {
private String desc = "Hello World";
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public void method(){
System.out.println("MyBeanDefinitionRegistry-method():" + desc);
}
public MyBeanDefinitionRegistryBean() {
System.out.println("我是BeanDefinitionRegistry");
}
}
public class MyRegularPostProcessorBean {
private String desc = "Hello World";
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public void method(){
System.out.println("MyRegularPostProcessorBean-method():" + desc);
}
}
SpringBeanConfig
@Configuration
@ComponentScan("com.wts.BeanFactoryPostProcessorTest")
public class SpringBeanConfig {
/**
* 这这方法返回一个MyRegularPostProcessorBean注入到BeanFactory中
* @return
*/
@Bean("myRegularPostProcessorBean")
public MyRegularPostProcessorBean getMyRegularPostProcessorBean(){
return new MyRegularPostProcessorBean();
}
}
BeanDefinitionRegistryPostProcessor
和一个我们自定义的BeanFactoryPostProcessor
@Component
public class MyBeanDefinitionRegistryPostProcessor implements BeanDefinitionRegistryPostProcessor {
@Override
public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
System.out.println("BDRPP.postProcessBeanDefinitionRegistry----start");
// 这里我们将我们要注入的class封装成BeanDefinition
RootBeanDefinition beanDefinition = new RootBeanDefinition(MyBeanDefinitionRegistryBean.class);
// 将我们的BeanDefinition注入到BeanFactory中
registry.registerBeanDefinition("myBeanDefinitionRegistryBean", beanDefinition);
//第一、先调用这个注册c
System.out.println("BDRPP.postProcessBeanDefinitionRegistry----end");
}
/**
* BeanDefinitionRegistryPostProcessor继承了BeanFactoryPostProcessor,因此他也有BeanFactoryPostProcessor的功能
* @param beanFactory
* @throws BeansException
*/
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
// 第二、当bean都完成注册后,调用这个方法
System.out.println("BDRPP.postProcessBeanFactory----start");
// 通过BeanFactory获取我们BeanDefinition
BeanDefinition beanDefinition = beanFactory.getBeanDefinition("myBeanDefinitionRegistryBean");
// 获取Bean的成员变量
MutablePropertyValues pv = beanDefinition.getPropertyValues();
// 将desc变量的值替换
pv.addPropertyValue("desc","Hello! My name is myBeanDefinitionRegistryBean, I was modified by the BDRPP.BeanFactoryPostProcessor");
System.out.println("BDRPP.postProcessBeanFactory----end");
}
}
/**
* 这里我们自定义的BeanFactoryPostProcessor必须是能够注入到BeanFactory中的,否则我们上下文初始化的之后无法从IOC容器中找到他执行方法
* 这里我们用@Component注解来标记它,使IOC容器能够扫描到它并注册
*/
@Component
public class MyBeanFactoryPostProcessors implements BeanFactoryPostProcessor {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
System.out.println("BFPP.postProcessBeanFactory----start");
// 通过BeanFactory获取我们BeanDefinition
BeanDefinition beanDefinition = beanFactory.getBeanDefinition("myRegularPostProcessorBean");
// 获取Bean的成员变量
MutablePropertyValues pv = beanDefinition.getPropertyValues();
// 将desc变量的值替换
pv.addPropertyValue("desc","Hello! My name is myBeanDefinitionRegistryBean, I was modified by the BFPP.BeanFactoryPostProcessor");
System.out.println("BFPP.postProcessBeanFactory----end");
}
}
public class Test {
public static void main(String[] args) {
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringBeanConfig.class);
MyRegularPostProcessorBean regularPostProcessor = (MyRegularPostProcessorBean)applicationContext.getBean("myRegularPostProcessorBean");
MyBeanDefinitionRegistryBean beanDefinitionRegistry = (MyBeanDefinitionRegistryBean)applicationContext.getBean("myBeanDefinitionRegistryBean");
regularPostProcessor.method();
System.out.println("----------------------------------------");
beanDefinitionRegistry.method();
}
}
BeanFactoryPostProcessor
和BeanDefinitionRegistryPostProcessor
的解析和使用就已经完成了。以上:内容部分参考
《Spring源码深度解析》
如有侵扰,联系删除。 内容仅用于自我记录学习使用。如有错误,欢迎指正