spring-reading./spring-interface/spring-interface-beanFactor.../README.md

376 lines
19 KiB
Markdown
Raw Normal View History

2023-09-15 06:48:23 +00:00
## BeanFactoryPostProcessor
2023-09-26 08:45:14 +00:00
- [BeanFactoryPostProcessor](#beanfactorypostprocessor)
2023-10-15 09:24:32 +00:00
- [一、基本信息](#一基本信息)
- [二、接口描述](#二接口描述)
- [三、接口源码](#三接口源码)
- [四、主要功能](#四主要功能)
- [五、最佳实践](#五最佳实践)
- [六、时序图](#六时序图)
- [七、源码分析](#七源码分析)
- [八、注意事项](#八注意事项)
- [九、总结](#九总结)
- [最佳实践总结](#最佳实践总结)
- [源码分析总结](#源码分析总结)
2023-09-26 08:45:14 +00:00
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
### 一、基本信息
✒️ **作者** - Lex 📝 **博客** - [我的CSDN](https://blog.csdn.net/duzhuang2399/article/details/133844965) 📚 **文章目录** - [所有文章](https://github.com/xuchengsheng/spring-reading) 🔗 **源码地址** - [BeanFactoryPostProcessor源码](https://github.com/xuchengsheng/spring-reading/tree/master/spring-interface/spring-interface-beanFactoryPostProcessor)
### 二、接口描述
2023-09-15 06:48:23 +00:00
`BeanFactoryPostProcessor` 是一个接口,任何实现此接口的类都必须提供`postProcessBeanFactory`方法的实现。此方法提供了一个机会在bean实例化之前修改bean的定义。
2023-10-15 09:24:32 +00:00
### 三、接口源码
2023-09-15 06:48:23 +00:00
2023-09-26 08:45:14 +00:00
`BeanFactoryPostProcessor` 是 Spring 框架自 06.07.2003 开始引入的一个核心接口。此接口提供了一个强大的方式来修改bean的属性和依赖关系使得我们可以根据特定的配置或环境条件动态地调整这些值。
2023-09-15 06:48:23 +00:00
```java
/**
2023-09-26 08:45:14 +00:00
* BeanFactoryPostProcessor 是一个核心接口允许用户在Spring容器初始化bean之前修改bean定义。
* 它提供了一个强大的方式来修改bean的属性和依赖关系使得我们可以根据特定的配置或环境条件动态地调整这些值。
*
* @author Juergen Hoeller
* @author Sam Brannen
* @since 06.07.2003
* @see BeanPostProcessor
* @see PropertyResourceConfigurer
2023-09-15 06:48:23 +00:00
*/
@FunctionalInterface
public interface BeanFactoryPostProcessor {
/**
2023-09-26 08:45:14 +00:00
* 在应用上下文的内部bean工厂进行其标准初始化后修改它。
* 此时所有bean定义都已加载但尚未实例化任何bean。
* 这允许用户即使对于急切初始化的beans也可以覆盖或添加属性。
*
* @param beanFactory 应用上下文使用的bean工厂
* @throws org.springframework.beans.BeansException 如果发生错误
2023-09-15 06:48:23 +00:00
*/
void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException;
2023-09-26 08:45:14 +00:00
2023-09-15 06:48:23 +00:00
}
```
2023-10-15 09:24:32 +00:00
### 四、主要功能
1. **修改Bean定义**
+ 在Spring加载所有bean定义后但在它开始实例化这些bean之前`BeanFactoryPostProcessor`会被调用。这意味着我们可以使用它来修改这些bean定义。
2. **更改属性值**
+ 我们可以更改bean的属性或依赖这在某些场景下如需要根据环境或其他外部因素动态地配置bean时会非常有用。
3. **添加或删除Bean定义**
+ 不仅可以修改现有的bean定义还可以添加新的bean定义或删除现有的bean定义。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
4. **应用多个BeanFactoryPostProcessors**
+ 如果有多个`BeanFactoryPostProcessor`,我们可以通过实现`Ordered`接口来控制它们的执行顺序。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
### 五、最佳实践
2023-09-15 06:48:23 +00:00
首先来看看启动类入口,上下文环境使用`AnnotationConfigApplicationContext`此类是使用Java注解来配置Spring容器的方式构造参数我们给定了一个`MyConfiguration`组件类。然后我们会调用`mySimpleBean1`和`mySimpleBean2`中的`show()`方法,我们可以判断`MySimpleBean`的作用域是单例还是原型。如果它们指向同一个实例,那么它是单例的;否则,它是原型的。
```java
public class BeanFactoryPostProcessorApplication {
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfiguration.class);
MySimpleBean mySimpleBean1 = context.getBean(MySimpleBean.class);
MySimpleBean mySimpleBean2 = context.getBean(MySimpleBean.class);
mySimpleBean1.show();
mySimpleBean2.show();
}
}
```
这里使用`@Bean`注解定义了两个Bean是为了确保`MySimpleBean` `MyBeanFactoryPostProcessor` 被 Spring 容器执行
2023-09-15 06:48:23 +00:00
```java
@Configuration
public class MyConfiguration {
@Bean
public MySimpleBean mySimpleBean(){
return new MySimpleBean();
}
@Bean
public static MyBeanFactoryPostProcessor myBeanFactoryPostProcessor(){
2023-09-15 06:48:23 +00:00
return new MyBeanFactoryPostProcessor();
}
}
```
`MySimpleBean`类中的`show`方法在被调用时会在控制台输出“MySimpleBean instance”和当前对象的实例地址通过`this`关键字。这有助于我们了解每次获取bean时是否返回相同的实例单例还是新的实例原型
```java
public class MySimpleBean {
public void show() {
System.out.println("MySimpleBean instance: " + this);
}
}
```
2023-10-15 09:24:32 +00:00
这个 `MyBeanFactoryPostProcessor` 类是一个简单的 `BeanFactoryPostProcessor` 的实现,它在被调用时,会从`beanFactory`工厂中获取名为`mySimpleBean`的bean定义默认情况下所有的bean都是单例的然后将`mySimpleBean`的作用域从单例改为原型。在实际应用中,我们可能会在 `postProcessBeanFactory` 方法内部执行更复杂的操作,例如修改 bean 的属性、对Bean对象进行代理做功能增强处理、更改它们的作用域或添加新的 bean 定义等。
2023-09-15 06:48:23 +00:00
```java
public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
System.out.println("修改bean的定义");
BeanDefinition beanDefinition = beanFactory.getBeanDefinition("mySimpleBean");
beanDefinition.setScope(BeanDefinition.SCOPE_PROTOTYPE);
System.out.println("将mySimpleBean从默认的单例修改成多例");
System.out.println("修改bean的定义已完成");
}
}
```
运行结果发现,由于`mySimpleBean`现在是原型作用域,`[com.xcs.spring.config.MySimpleBean@11392934]`和`[com.xcs.spring.config.MySimpleBean@6892b3b6]`将是两个不同的地址,说明`MySimpleBean`的两个实例是不同的。
2023-09-15 06:48:23 +00:00
```java
修改bean的定义
将mySimpleBean从默认的单例修改成多例
修改bean的定义已完成
MySimpleBean instance: com.xcs.spring.config.MySimpleBean@11392934
MySimpleBean instance: com.xcs.spring.config.MySimpleBean@6892b3b6
```
2023-10-15 09:24:32 +00:00
### 六、时序图
2023-09-15 06:48:23 +00:00
```mermaid
sequenceDiagram
Title: BeanFactoryPostProcessor时序图
participant BeanFactoryPostProcessorApplication
participant AnnotationConfigApplicationContext
participant AbstractApplicationContext
participant PostProcessorRegistrationDelegate
participant MyBeanFactoryPostProcessor
participant ConfigurableListableBeanFactory
BeanFactoryPostProcessorApplication->>AnnotationConfigApplicationContext:AnnotationConfigApplicationContext(componentClasses)<br>启动上下文
AnnotationConfigApplicationContext->>AbstractApplicationContext:refresh()
AbstractApplicationContext->>AbstractApplicationContext:invokeBeanFactoryPostProcessors(beanFactory)<br>触发整个BeanFactoryPostProcessor调用的流程
AbstractApplicationContext->>PostProcessorRegistrationDelegate:invokeBeanFactoryPostProcessors(...)<br>确保正确的顺序触发BeanFactoryPostProcessor调用的流程
PostProcessorRegistrationDelegate->>PostProcessorRegistrationDelegate:invokeBeanFactoryPostProcessors(postProcessors,beanFactory)<br>最终对BeanFactoryPostProcessor接口回调
PostProcessorRegistrationDelegate->>MyBeanFactoryPostProcessor:postProcessBeanFactory(beanFactory)<br>执行自定义的逻辑
MyBeanFactoryPostProcessor-->>ConfigurableListableBeanFactory:访问和修改bean定义
ConfigurableListableBeanFactory-->>MyBeanFactoryPostProcessor:修改已完成
PostProcessorRegistrationDelegate-->>AbstractApplicationContext: 调用Bean工厂后置处理器完成
AnnotationConfigApplicationContext->>BeanFactoryPostProcessorApplication:初始化完成
```
2023-10-15 09:24:32 +00:00
### 七、源码分析
2023-09-15 06:48:23 +00:00
2023-09-26 08:45:14 +00:00
首先来看看启动类入口,上下文环境使用`AnnotationConfigApplicationContext`此类是使用Java注解来配置Spring容器的方式构造参数我们给定了一个`MyConfiguration`组件类。从Spring上下文中获取MySimpleBean的两个实例调用这两个实例的show方法如果MySimpleBean是单例的那么这两个实例应该是同一个对象反之则不是。
2023-09-15 06:48:23 +00:00
```java
public class BeanFactoryPostProcessorApplication {
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfiguration.class);
MySimpleBean mySimpleBean1 = context.getBean(MySimpleBean.class);
MySimpleBean mySimpleBean2 = context.getBean(MySimpleBean.class);
mySimpleBean1.show();
mySimpleBean2.show();
}
}
```
2023-09-26 08:45:14 +00:00
在`org.springframework.context.annotation.AnnotationConfigApplicationContext#AnnotationConfigApplicationContext`构造函数中,执行了三个步骤,我们重点关注`refresh()`方法。
2023-09-15 06:48:23 +00:00
```java
public AnnotationConfigApplicationContext(Class<?>... componentClasses) {
this();
register(componentClasses);
refresh();
}
```
2023-09-26 08:45:14 +00:00
在`org.springframework.context.support.AbstractApplicationContext#refresh`方法中我们重点关注一下`finishBeanFactoryInitialization(beanFactory)`这方法会对实例化所有剩余非懒加载的单列Bean对象其他方法不是本次源码阅读的重点暂时忽略。
2023-09-15 06:48:23 +00:00
```java
@Override
public void refresh() throws BeansException, IllegalStateException {
// ... [代码部分省略以简化]
// 调用在上下文中注册为bean的工厂处理器
invokeBeanFactoryPostProcessors(beanFactory);
// ... [代码部分省略以简化]
}
```
2023-09-26 08:45:14 +00:00
在`org.springframework.context.support.AbstractApplicationContext#invokeBeanFactoryPostProcessors`方法中,又委托了`PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors()`进行调用。
2023-09-15 06:48:23 +00:00
```java
protected void invokeBeanFactoryPostProcessors(ConfigurableListableBeanFactory beanFactory) {
PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(beanFactory, getBeanFactoryPostProcessors());
// ... [代码部分省略以简化]
}
```
2023-09-26 08:45:14 +00:00
在`org.springframework.context.support.PostProcessorRegistrationDelegate#invokeBeanFactoryPostProcessors`方法中,主要是对`BeanDefinitionRegistryPostProcessor``BeanFactoryPostProcessor`这两个接口的实现类进行回调,至于为什么这个方法里面代码很长呢?其实这个方法就做了一个事就是对处理器的执行顺序在做处理。比如说要先对实现了`PriorityOrdered.class`类回调,在对实现了`Ordered.class`类回调,最后才是对没有实现任何优先级的处理器进行回调。
2023-09-15 06:48:23 +00:00
```java
public static void invokeBeanFactoryPostProcessors(
ConfigurableListableBeanFactory beanFactory, List<BeanFactoryPostProcessor> beanFactoryPostProcessors) {
// ... [代码部分省略以简化]
2023-09-15 06:48:23 +00:00
// 获取所有实现了BeanFactoryPostProcessor接口的bean的名称。
String[] postProcessorNames =
beanFactory.getBeanNamesForType(BeanFactoryPostProcessor.class, true, false);
// 创建集合以区分不同类型的BeanFactoryPostProcessors
List<BeanFactoryPostProcessor> priorityOrderedPostProcessors = new ArrayList<>();
List<String> orderedPostProcessorNames = new ArrayList<>();
List<String> nonOrderedPostProcessorNames = new ArrayList<>();
// 对BeanFactoryPostProcessors进行分类
for (String ppName : postProcessorNames) {
if (processedBeans.contains(ppName)) {
// 如果这个bean已经被处理直接跳过
}
else if (beanFactory.isTypeMatch(ppName, PriorityOrdered.class)) {
// 优先排序的BeanFactoryPostProcessors
priorityOrderedPostProcessors.add(beanFactory.getBean(ppName, BeanFactoryPostProcessor.class));
}
else if (beanFactory.isTypeMatch(ppName, Ordered.class)) {
// 有排序的BeanFactoryPostProcessors
orderedPostProcessorNames.add(ppName);
}
else {
// 没有排序的BeanFactoryPostProcessors
nonOrderedPostProcessorNames.add(ppName);
}
}
// 调用实现了PriorityOrdered接口的BeanFactoryPostProcessors
sortPostProcessors(priorityOrderedPostProcessors, beanFactory);
invokeBeanFactoryPostProcessors(priorityOrderedPostProcessors, beanFactory);
// 调用实现了Ordered接口的BeanFactoryPostProcessors
List<BeanFactoryPostProcessor> orderedPostProcessors = new ArrayList<>(orderedPostProcessorNames.size());
for (String postProcessorName : orderedPostProcessorNames) {
orderedPostProcessors.add(beanFactory.getBean(postProcessorName, BeanFactoryPostProcessor.class));
}
sortPostProcessors(orderedPostProcessors, beanFactory);
invokeBeanFactoryPostProcessors(orderedPostProcessors, beanFactory);
// 调用其他所有的BeanFactoryPostProcessors
List<BeanFactoryPostProcessor> nonOrderedPostProcessors = new ArrayList<>(nonOrderedPostProcessorNames.size());
for (String postProcessorName : nonOrderedPostProcessorNames) {
nonOrderedPostProcessors.add(beanFactory.getBean(postProcessorName, BeanFactoryPostProcessor.class));
}
invokeBeanFactoryPostProcessors(nonOrderedPostProcessors, beanFactory);
// 清除元数据缓存因为BeanFactoryPostProcessors可能已修改bean定义
beanFactory.clearMetadataCache();
}
```
下面是我画的一个关于`BeanFactoryPostProcessor`排序回调过程时序图大家可以参考一下。
~~~mermaid
sequenceDiagram
Title: BeanFactoryPostProcessor回调排序时序图
participant Init as invokeBeanFactoryPostProcessors
participant BFPP_PO as BFPP(PriorityOrdered)
participant BFPP_O as BFPP(Ordered)
participant BFPP as 其余的BFPP
Init->>BFPP_PO: 回调
BFPP_PO-->>Init: 完成
Init->>BFPP_O: 回调
BFPP_O-->>Init: 完成
Init->>BFPP: 回调
BFPP-->>Init: 完成
Note right of BFPP: 提示:
Note right of BFPP: BFPP = BeanFactoryPostProcessor
~~~
2023-09-26 08:45:14 +00:00
在`org.springframework.context.support.PostProcessorRegistrationDelegate#invokeBeanFactoryPostProcessors`方法中,循环调用了实现`BeanFactoryPostProcessor`接口中的`postProcessBeanFactory(registry)`方法
2023-09-15 06:48:23 +00:00
```java
private static void invokeBeanFactoryPostProcessors(
Collection<? extends BeanFactoryPostProcessor> postProcessors, ConfigurableListableBeanFactory beanFactory) {
for (BeanFactoryPostProcessor postProcessor : postProcessors) {
StartupStep postProcessBeanFactory = beanFactory.getApplicationStartup().start("spring.context.bean-factory.post-process")
.tag("postProcessor", postProcessor::toString);
postProcessor.postProcessBeanFactory(beanFactory);
postProcessBeanFactory.end();
}
}
```
2023-09-26 08:45:14 +00:00
最后执行到我们自定义的逻辑中,在实际应用中,我们可以在 `postProcessBeanFactory` 方法内部执行更复杂的操作,例如修改 bean 的属性、对Bean对象进行代理做功能增强处理、更改它们的作用域或添加新的 bean 定义等。
2023-09-15 06:48:23 +00:00
```java
public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
System.out.println("修改bean的定义");
BeanDefinition beanDefinition = beanFactory.getBeanDefinition("mySimpleBean");
beanDefinition.setScope(BeanDefinition.SCOPE_PROTOTYPE);
System.out.println("将mySimpleBean从默认的单例修改成多例");
System.out.println("修改bean的定义已完成");
}
}
```
2023-10-15 09:24:32 +00:00
### 八、注意事项
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
1. **考虑其他的`BeanFactoryPostProcessor`**
+ 在大型应用程序中,可能存在多个`BeanFactoryPostProcessor`。我们需要确保它们不会互相冲突或导致不一致的bean定义。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
2. **注意执行顺序**
+ 如果有多个`BeanFactoryPostProcessor`,它们的执行顺序可能会影响结果。使用`Ordered`接口或`PriorityOrdered`接口来明确设置执行顺序。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
3. **避免循环依赖**
+ 修改bean定义可能会引入循环依赖。确保我们充分理解bean之间的依赖关系并尝试避免修改这些关系。比如当我们修改了`BeanDefinition`构造函数,等等情况都有可能引入循环依赖。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
4. **不要过度使用**
+ 虽然`BeanFactoryPostProcessor`是一个非常强大接口,但这并不意味着我们就应该频繁使用它。只在真正需要的时候使用它,并考虑是否有其他更简单、更直观的方法可以达到同样的目的。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
5. **谨慎使用**
+ 虽然`BeanFactoryPostProcessor`是一个非常强大接口允许我们修改bean的定义。这意味着我们可以更改bean的类、作用域、属性等。我们要在做这些更改时要非常小心想想为什么要修改影响的范围有多少以免引入不一致或不可预测的行为。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
### 九、总结
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
#### 最佳实践总结
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
1. **初始化与配置**
+ 使用`AnnotationConfigApplicationContext`, 我们成功地启动了Spring容器并加载了`MyConfiguration`配置。在`MyConfiguration`中, 我们定义了两个核心bean`MySimpleBean`和`MyBeanFactoryPostProcessor`.
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
2. **修改Bean的作用域**
+ 虽然`MySimpleBean`默认是单例,但通过`MyBeanFactoryPostProcessor`,我们改变了这一默认行为,将其转变为原型作用域。这种转变是通过覆盖`postProcessBeanFactory`方法并更改`mySimpleBean`的bean定义来完成的。
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
3. **验证修改**
+ 当我们从主应用程序获取`MySimpleBean`的两个实例并调用它们的`show`方法时输出的实例地址明确地告诉我们这两个bean是不同的实例。
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
#### 源码分析总结
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
1. **启动与上下文**
+ 利用 `AnnotationConfigApplicationContext`我们初始化了Spring容器并加载了`MyConfiguration`作为主要配置。
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
2. **核心调用**
+ Spring容器的`refresh`方法中,`invokeBeanFactoryPostProcessors(beanFactory)`确保所有的`BeanFactoryPostProcessor`得到适当的调用。
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
3. **回调顺序**
+ 在Spring中实现了`BeanFactoryPostProcessor`接口的bean不是随机调用的。Spring确保它们按照`PriorityOrdered`、`Ordered`和无顺序的层次结构进行分类和调用。
2023-09-26 08:45:14 +00:00
2023-10-15 09:24:32 +00:00
4. **自定义逻辑**
+ 当我们实现`BeanFactoryPostProcessor`接口并提供自定义逻辑时例如更改Bean的作用域该逻辑将在上述过程的适当阶段被调用。
2023-09-15 06:48:23 +00:00
2023-10-15 09:24:32 +00:00
5. **具体实践**
+ 通过具体示例,我们查看了如何利用`BeanFactoryPostProcessor`在bean实例化前更改bean定义。在我们的例子中`MySimpleBean`的作用域从单例被更改为原型。