BeanPostProcessor原理分析

一、BeanPostProcessor的作用

  • BeanPostProcessor提供了初始化前后回调的方法,Spring中常见的扩展就是在初始化前后对Bean进行的扩展。
  • BeanDefinition注册完成之后,在创建Bean过程中的初始化前后分别调用其中定义的方法。

其操作对象为:已经实例化且进行了属性填充,待初始化的Bean实例。

1. 源码

public interface BeanPostProcessor {
  /**
  * 初始化前调用
  */
   @Nullable
   default Object postProcessBeforeInitialization(Object bean, String beanName) 
       throws BeansException {
      return bean;
   }
   /**
   * 初始化后调用
   */
   @Nullable
   default Object postProcessAfterInitialization(Object bean, String beanName) 
       throws BeansException {
      return bean;
   }
}

注意:方法的返回值为原始实例或者包装后的实例。如果返回null会导致后续的BeanPostProcessor不生效(BeanPostProcessor是可以注册多个的)。

2. 使用案例


public class BeanPostProcessorDemo {
    public static void main(String[] args) {
        // 创建基础容器
        // BeanFactory作为基础容器,可以手动将BeanPostProcessor注册到容器中去的。
		// 同时也可以采用扫描或者定义的方式注册到容器中。
        DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        // 加载xml配置文件
        XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(beanFactory);
        reader.loadBeanDefinitions("spring-bean-post-processor.xml");
        // 添加BeanPostProcessor
        beanFactory.addBeanPostProcessor(new UserBeanPostProcessor());
        User user = beanFactory.getBean(User.class);
        System.out.println(user);
    }
}
@Data
class User{
    private String userName;
    private Integer age;
    private String beforeMessage;
    private String afterMessage;
    
    public void initMethod(){
        System.out.println("初始化:"+this);
        this.setUserName("小明");
        this.setAge(18);
    }
}
class UserBeanPostProcessor implements BeanPostProcessor{
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) 
        throws BeansException {
        if (bean instanceof User){
            System.out.println("初始化前:"+bean);
            ((User) bean).setBeforeMessage("初始化前信息");
        }
        return bean;
    }
    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        if (bean instanceof User){
            System.out.println("初始化后:"+bean);
            ((User) bean).setAfterMessage("初始化后信息");
        }
        return bean;
    }
}
初始化前:User(userName=null, age=null, beforeMessage=null, afterMessage=null)
初始化:User(userName=null, age=null, beforeMessage=初始化前信息, afterMessage=null)
初始化后:User(userName=小明, age=18, beforeMessage=初始化前信息, afterMessage=null)
User(userName=小明, age=18, beforeMessage=初始化前信息, afterMessage=初始化后信息)

打印结果分析:

  1. 初始化前:User(userName=null, age=null, beforeMessage=null, afterMessage=null)
    该结果是postProcessBeforeInitialization方法中输出的内容,这个时候User实例还只是进行了实例化,还未进行到初始化步骤,所以所有的属性都为null,说明该方法确实是初始化执行的。——(此时的初始化指的是bean对象的init方法)
  2. 初始化:User(userName=null, age=null, beforeMessage=初始化前信息, afterMessage=null)
    该结果为自定义的初始化方法initMethod方法中输出的内容,这个时候User实例真正初始化,而beforeMessage中的值正是在postProcessBeforeInitialization设置的。
  3. 初始化后:User(userName=小明, age=18, beforeMessage=初始化前信息, afterMessage=null)
    该结果是postProcessAfterInitialization中输出内容,从打印结果可以看出它的确是在自定义initMethod后。

二、Spring生命周期中的BeanPostProcessor

Spring中Bean总体上来说可以分为四个周期:实例化、属性赋值、初始化、销毁。
而BeanPostProcessor则是在初始化阶段的前后执行。

首先看AbstractAutowireCapableBeanFactory源码中doCreateBean方法,该方法实际就是创建指定Bean的方法。
其中有三个重要的方法:createBeanInstance、populateBean、initializeBean。
这三个方法分别代表了Spring Bean中的实例化、属性赋值和初始化三个生命周期。

BeanPostProcessor是在初始化前后调用,所以查看initializeBean中的方法详情即可。

protected Object initializeBean(String beanName, Object bean, @Nullable 
                                RootBeanDefinition mbd) {
   // 处理BeanNameAware、BeanClassLoaderAware、BeanFactoryAware
   if (System.getSecurityManager() != null) {
         AccessController.doPrivileged((PrivilegedAction<Object>) () -> {
         invokeAwareMethods(beanName, bean);
         return null;
      }, getAccessControlContext());
   }
   else {
      invokeAwareMethods(beanName, bean);
   }
   // 处理BeanPostProcessor
   Object wrappedBean = bean;
   if (mbd == null || !mbd.isSynthetic()) {
      // 回调postProcessBeforeInitialization方法
      wrappedBean = applyBeanPostProcessorsBeforeInitialization(wrappedBean, beanName);
   }
   try {
      // 处理InitializingBean和BeanDefinition中指定的initMethod
      invokeInitMethods(beanName, wrappedBean, mbd);
   }
   catch (Throwable ex) {
           throw new BeanCreationException(
            (mbd != null ? mbd.getResourceDescription() : null),
            beanName, "Invocation of init method failed", ex);
   }
   if (mbd == null || !mbd.isSynthetic()) {
      //回调postProcessAfterInitialization方法
      wrappedBean = applyBeanPostProcessorsAfterInitialization(wrappedBean, beanName);
   }
   return wrappedBean;
}

从上面的源码可以看出首先是处理部分Aware相关接口,然后接着就是处理BeanPostProcessor中的postProcessBeforeInitialization方法,该方法详情如下:

public Object applyBeanPostProcessorsBeforeInitialization(Object existingBean, String beanName) throws BeansException {
   Object result = existingBean;
   // 依次处理BeanPostProcessor
   for (BeanPostProcessor processor : getBeanPostProcessors()) {
      Object current = processor.postProcessBeforeInitialization(result, beanName);
      // 如果放回null,则直接返回。后续BeanPostProcessor中的postProcessBeforeInitialization不再执行
      if (current == null) {
         return result;
      }
      result = current;
   }
   return result;
}

该方法就是执行postProcessBeforeInitialization回调的详情内容,从该实现可以知道,BeanPostProcessor可以有多个,而且会按照顺序依次处理。如果只要其中的任意一个返回null,则后续的BeanPostProcessor的postProcessBeforeInitialization将不会再处理了。

接着就是执行初始化方法,即invokeInitMethods方法被调用。

protected void invokeInitMethods(String beanName, Object bean, @Nullable RootBeanDefinition mbd) throws Throwable {
   boolean isInitializingBean = (bean instanceof InitializingBean);
   if (isInitializingBean && (mbd == null ||    
        !mbd.isExternallyManagedInitMethod("afterPropertiesSet"))) {
      if (logger.isTraceEnabled()) {
         logger.trace("Invoking afterPropertiesSet() on bean with name '" + beanName + 
            "'");
      }
      // 如果当前Bean实现了InitializingBean接口则会执行它的afterPropertiesSet()方法
      if (System.getSecurityManager() != null) {
         try {
            AccessController.doPrivileged((PrivilegedExceptionAction<Object>) () -> {
               ((InitializingBean) bean).afterPropertiesSet();
               return null;
            }, getAccessControlContext());
         }
         catch (PrivilegedActionException pae) {
            throw pae.getException();
         }
      }
      else {
         ((InitializingBean) bean).afterPropertiesSet();
      }
   }
   // 如果在BeanDefinition中定义了initMethod则执行初始化方法
   if (mbd != null && bean.getClass() != NullBean.class) {
      String initMethodName = mbd.getInitMethodName();
      if (StringUtils.hasLength(initMethodName) &&
            !(isInitializingBean && "afterPropertiesSet".equals(initMethodName)) &&
            !mbd.isExternallyManagedInitMethod(initMethodName)) {
         invokeCustomInitMethod(beanName, bean, mbd);
      }
   }
}

从上面代码也进一步验证了BeanPostProcessor中的postProcessBeforeInitialization方法的确是在初始化前调用。
当invokeInitMethods执行之后接着就执行applyBeanPostProcessorsAfterInitialization方法。


@Override
public Object applyBeanPostProcessorsAfterInitialization(Object existingBean, String beanName)
      throws BeansException {
   Object result = existingBean;
   for (BeanPostProcessor processor : getBeanPostProcessors()) {
      Object current = processor.postProcessAfterInitialization(result, beanName);
      if (current == null) {
         return result;
      }
      result = current;
   }
   return result;
}

该方法与applyBeanPostProcessorsBeforeInitialization几乎就是相同的,不同的在于它执行的是postProcessAfterInitialization。至此Spring Bean的初始化也就完成了。

在这里插入图片描述

三、BeanPostProcessor对@PostConstruct的支持

通过上面了解了Spring Bean生命周期中初始化的过程,但实际上Spring对于JSR250也支持,例如对@PostConstruct注解的支持。
在Spring中有一个CommonAnnotationBeanPostProcessor类,这个类的注释中有说到这个类就是用来对JSR250及其他一些规范的支持。

在这里插入图片描述

从上图中我们可以看出,CommonAnnotationBeanPostProcessor并没有直接对BeanPostProcessor有所实现,它继承InitDestroyAnnotationBeanPostProcessor该类,而对@PostConstruct的实现主要在该类中。

在这里插入图片描述

而对BeanPostProcessor的实现代码如下:

@Override
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
   // 1.生命周期元数据封装
   LifecycleMetadata metadata = findLifecycleMetadata(bean.getClass());
   try {
      // 2.执行InitMethods
      metadata.invokeInitMethods(bean, beanName);
   }
   catch (InvocationTargetException ex) {
      throw new BeanCreationException(beanName, "Invocation of init method failed", ex.getTargetException());
   }
   catch (Throwable ex) {
      throw new BeanCreationException(beanName, "Failed to invoke init method", ex);
   }
   return bean;
}
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
   return bean;
}

对BeanPostProcessor的实现主要在before方法中,该方法主要就是两部分内容,第一部分主要是将信息封装到LifecycleMetadata中,便于后面第二步的执行相关初始化方法。

案例:


public class BeanPostProcessorDemo2 {
    public static void main(String[] args) {
        // 创建基础容器
        DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
        // 构建BeanDefinition并注册
        AbstractBeanDefinition beanDefinition = 
            BeanDefinitionBuilder.genericBeanDefinition(Person.class)
                .getBeanDefinition();
        beanFactory.registerBeanDefinition("person",beanDefinition);
        // 注册CommonAnnotationBeanPostProcessor
        CommonAnnotationBeanPostProcessor commonAnnotationBeanPostProcessor 
            = new CommonAnnotationBeanPostProcessor();
        beanFactory.addBeanPostProcessor(commonAnnotationBeanPostProcessor);
        // 获取Bean
        Person person = beanFactory.getBean(Person.class);
        System.out.println(person);
    }
}

class Person{
    @PostConstruct
    public void annotationInitMethod(){
        System.out.println("@PostConstruct");
    }
}

上面的代码定义了一个Person类并使用@PostConstruct标记出它的初始化方法,然后创建BeanFactory,并创建Person的BeanDefinition将其注册到BeanFactory(与读取配置文件一样),然后创建CommonAnnotationBeanPostProcessor并将其添加到BeanFactory中。

最后打印结果会打印出@PostConstruct。如果我们将下面这句代码注释。
beanFactory.addBeanPostProcessor(commonAnnotationBeanPostProcessor);
再次执行可以发现,@PostConstruct将会失效,且最后不会打印出结果。

四、BeanPostProcessor中的顺序性

BeanPostProcessor是可以注册多个的,在AbstractBeanFactory内部通过List变量beanPostProcessors来存储BeanPostProcessor。而在执行时是按照List中BeanPostProcessor的顺序一个个执行的,所以我们在想容器中添加BeanPostProcessor时需要注意顺序。如果我们不是通过手动添加(大多数时候不是)时,而是在代码或者配置文件中定义多个BeanPostProcessor时,我们可以通过实现Ordered接口来控制它的顺序。

BeanPostProcessor依赖的Bean是不会执行BeanPostProcessor的,这是因为在创建BeanPostProcessor时,其所依赖的Bean就需要完成初始化,而这个时候BeanPostProcessor都还未完初始化完成。

此外我们需要了解:@PostConstruct 执行点(beforeInitialization) 要早于 afterProperitesSet(invokeInitMethod-1) 早于对应的Bean定义的initMethod(invokeinitiMethod-2)方法的执行。

案例:

public class App3 {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext context = new 
        AnnotationConfigApplicationContext();
        context.scan("com.buydeem.beanpostprocessor");
        context.register(App3.class);
        context.refresh();
    }
}

@Component
class ClassA{
}

@Component
class ClassB{
}

@Component
class MyBeanPostProcessor implements BeanPostProcessor{
    @Autowired
    private ClassA classA;
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) 
        throws BeansException {
        System.out.println("MyBeanPostProcessor"+bean);
        return bean;
    }
}

注意:最后ClassA是不会打印出来的,而ClassB是会被打印出来。因为MyBeanPostProcessor依赖了ClassA实例,ClassA会先初始化完成。

五、总结

Spring中BeanPostProcessor的子接口或实现类有很多种,例如:InstantiationAwareBeanPostProcessor、MergedBeanDefinitionPostProcessor、DestructionAwareBeanPostProcessor等。
这些接口分别处在Spring Bean生命周期的不同阶段,而他们的功能与BeanPostProcessor都类似,都是为了给Spring Bean各个生命周期提供扩展点。

### 回答1: BeanPostProcessorSpring框架中的一个接口,它允许开发人员在bean实例化和依赖注入之后对bean进行自定义处理。BeanPostProcessor接口有两个方法:postProcessBeforeInitialization和postProcessAfterInitialization。这两个方法分别在bean实例化之后和依赖注入之后被调用。 BeanPostProcessor源码解析可以从以下几个方面入手: 1. BeanPostProcessor的实现类 Spring框架中有很多实现了BeanPostProcessor接口的类,比如AutowiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor等。这些类都是用来处理bean的,可以通过查看它们的源码来了解BeanPostProcessor的具体实现。 2. postProcessBeforeInitialization方法 postProcessBeforeInitialization方法在bean实例化之后、依赖注入之前被调用。这个方法可以用来修改bean的属性或者执行一些初始化操作。在源码中可以看到,postProcessBeforeInitialization方法的实现类似于以下代码: public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { // 执行一些初始化操作 return bean; } 3. postProcessAfterInitialization方法 postProcessAfterInitialization方法在bean实例化和依赖注入之后被调用。这个方法可以用来对bean进行一些后处理操作。在源码中可以看到,postProcessAfterInitialization方法的实现类似于以下代码: public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { // 对bean进行一些后处理操作 return bean; } 4. BeanPostProcessor的执行顺序 在Spring框架中,BeanPostProcessor的执行顺序是固定的。首先会执行所有实现了PriorityOrdered接口的BeanPostProcessorpostProcessBeforeInitialization方法,然后执行所有实现了Ordered接口的BeanPostProcessorpostProcessBeforeInitialization方法,最后执行所有其他的BeanPostProcessorpostProcessBeforeInitialization方法。在执行postProcessAfterInitialization方法时,执行顺序与执行postProcessBeforeInitialization方法时相同。 总之,BeanPostProcessorSpring框架中非常重要的一个接口,它允许开发人员对bean进行自定义处理。通过对BeanPostProcessor源码分析,我们可以更好地理解它的实现原理和使用方法。 ### 回答2: BeanPostProcessorSpring框架的一个非常重要的组件。它可以在Bean的创建周期中对Bean进行一些处理,它提供了在初始化Bean之前和之后执行自定义逻辑的机会。本文将深入剖析BeanPostProcessor源码实现及其作用。 1. BeanPostProcessor的接口: BeanPostProcessor是一个接口,定义了两个方法: (1)postProcessBeforeInitialization(Object bean, String beanName): 在初始化之前对Bean做一些操作。 (2)postProcessAfterInitialization(Object bean, String beanName): 在初始化之后对Bean做一些操作。 2. BeanPostProcessor源码实现: 它是一个接口,BeanPostProcessor是一个在SpringBean加载过程中非常重要的组件,它主要负责Bean的实例化、属性赋值和初始化过程中提供额外的自定义处理逻辑。 BeanPostProcessor接口的定义如下: public interface BeanPostProcessor { Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException; Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException; } 在Spring IoC容器中,BeanPostProcessor的主要作用是在Bean实例化、属性赋值和初始化过程中提供额外的自定义处理逻辑。在创建Bean实例之后,Spring容器会遍历所有注册的BeanPostProcessor,调用它们的postProcessBeforeInitialization和postProcessAfterInitialization方法。 3. BeanPostProcessor的应用: (1)扩展Bean生命周期: 可以通过实现BeanPostProcessor接口来自定义对一个或者所有的Bean的初始化过程,可以在初始化之前或之后执行额外的逻辑。 (2)实现依赖注入: 可以通过实现BeanPostProcessor接口,来实现依赖注入。例如可以通过注解的方式,来实现自动为所有Bean中标注了特定注解的属性注入值。 (3)实现AOP: 可以通过Spring的AOP机制来实现AOP,而BeanPostProcessor是实现AOP的重要底层组件之一。 总之,BeanPostProcessorSpring框架中非常重要的一个组件,它提供了对Bean创建周期中的两个关键事件——初始化之前和初始化之后进行处理的机会。使用BeanPostProcessor可以实现很多功能,如扩展Bean的生命周期、实现依赖注入、实现AOP等,对于自定义框架和组件开发来说,非常有用。 ### 回答3: BeanPostProcessorSpring 框架中的一个扩展点,它允许我们在一个 bean 被实例化时或者在 bean 的初始化过程中修改 bean 的一些属性或者执行一些操作。本文将在源码层面上对 BeanPostProcessor 进行详细解析。 首先,我们需要了解 BeanPostProcessor 接口的定义: ```java public interface BeanPostProcessor { /** * 在 bean 的初始化之前执行,返回一个代理对象用来替换原始的 bean 对象。 * 在 Spring 内部,Spring 会在这个方法被调用时对当前 bean 对象进行代理, * 然后交给后续的 bean 处理流程处理。 * * @param bean 待初始化的 bean 对象 * @param beanName 当前 bean 对象的名称 * @return 可以替代原始 bean 对象的代理对象 * @throws BeansException 如果出现任何异常,将导致 bean 的初始化过程被中断。 */ @Nullable default Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { return bean; } /** * 在 bean 的初始化之后执行。这个方法在最终返回 bean 对象之前调用, * 因此在这里面进行的任何操作都可以生效,包括修改 bean 对象的属性值等等。 * * @param bean 待初始化的 bean 对象 * @param beanName 当前 bean 对象的名称 * @return 可以替代原始 bean 对象的代理对象 * @throws BeansException 如果出现任何异常,将导致 bean 的初始化过程被中断。 */ @Nullable default Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { return bean; } } ``` 可以看到,BeanPostProcessor 接口中只定义了两个方法,分别在 bean 实例化前后执行。这两个方法都有一个相同的传参,即需要处理的 bean 和这个 bean 的名称。 然后我们看看 Spring 框架是如何调用 BeanPostProcessor 的实现类的。在 AbstractAutowireCapableBeanFactory 类中,有一个名为 applyBeanPostProcessorsAfterInitialization 的方法: ```java protected Object applyBeanPostProcessorsAfterInitialization(Object existingBean, String beanName) throws BeansException { Object result = existingBean; // 遍历所有的 BeanPostProcessor 实现类,依次执行 postProcessAfterInitialization 方法 for (BeanPostProcessor processor : getBeanPostProcessors()) { Object current = processor.postProcessAfterInitialization(result, beanName); if (current == null) { return result; } result = current; } return result; } ``` 在这个方法中,Spring 会遍历所有的 BeanPostProcessor 实现类,依次调用 postProcessAfterInitialization 方法,返回代理对象。如果最终的代理对象返回 null,那么就会返回原始 bean 对象。这样保证了 BeanPostProcessor 的后续执行不会受到任何异常的干扰。 在 AbstractAutowireCapableBeanFactory 中还有一个方法 applyBeanPostProcessorsBeforeInitialization,其代码结构与 applyBeanPostProcessorsAfterInitialization 类似,不再赘述。 除了上述方法,AbstractAutowireCapableBeanFactory 类还有一个名为 getBeanPostProcessors 的方法。这个方法返回 Spring 容器内所有的 BeanPostProcessor 实现类,它们会依次被调用。 ```java protected List<BeanPostProcessor> getBeanPostProcessors() { List<BeanPostProcessor> processors = new ArrayList<>(); // 往集合里添加 BeanPostProcessor 实现类 processors.addAll(beanFactory.getBeansOfType(BeanPostProcessor.class, true, false).values()); // 往集合里添加 SmartInstantiationAwareBeanPostProcessor 实现类 processors.addAll(beanFactory.getBeansOfType(SmartInstantiationAwareBeanPostProcessor.class, true, false).values()); return processors; } ``` 可以看到,getBeanPostProcessors 方法主要作用是将 Spring 容器内所有的 BeanPostProcessor 实现类添加到一个 List 集合里,并返回这个集合。 至此,我们从源码层面上对 BeanPostProcessor 接口进行了详细的解析。相信读完这篇文档,你对 BeanPostProcessor 接口的作用以及 Spring 框架是如何使用它进行初始化 bean 过程中的各种扩展操作有了更深层次的理解。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值