`
uule
  • 浏览: 6348763 次
  • 性别: Icon_minigender_1
  • 来自: 一片神奇的土地
社区版块
存档分类
最新评论

Spring中BeanPostProcessor

 
阅读更多

Spring提供了很多扩展接口,BeanPostProcessor接口和InstantiationAwareBeanPostProcessor接口就是其中两个。

 

BeanPostProcessor

BeanPostProcessor接口作用是:如果我们需要在Spring容器完成Bean的实例化、配置和其他的初始化前后添加一些自己的逻辑处理,我们就可以定义一个或者多个BeanPostProcessor接口的实现,然后注册到容器中。

Spring中Bean的实例化过程图示:

由上图可以看到,Spring中的BeanPostProcessor在实例化过程处于的位置,BeanPostProcessor接口有两个方法需要实现:postProcessBeforeInitialization和postProcessAfterInitialization,

import org.springframework.beans.factory.config.BeanPostProcessor;
 
public class MyBeanPostProcessor implements BeanPostProcessor {
 
     public MyBeanPostProcessor() {
        super();
        System.out.println("这是BeanPostProcessor实现类构造器!!");        
     }
 
     @Override
     public Object postProcessAfterInitialization(Object bean, String arg1)
             throws BeansException {
         System.out.println("bean处理器:bean创建之后..");
         return bean;
     }
 
     @Override
     public Object postProcessBeforeInitialization(Object bean, String arg1)
             throws BeansException {
         System.out.println("bean处理器:bean创建之前..");
	 
         return bean;
     }
 }

 

BeanPostProcessor接口定义如下:

public interface BeanPostProcessor {

	/**
	 * Apply this BeanPostProcessor to the given new bean instance <i>before</i> any bean
	 * initialization callbacks (like InitializingBean's {@code afterPropertiesSet}
	 * or a custom init-method). The bean will already be populated with property values.	
	 */
//实例化、依赖注入完毕,在调用显示的初始化之前完成一些定制的初始化任务
	Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException;

	
	/**
	 * Apply this BeanPostProcessor to the given new bean instance <i>after</i> any bean
	 * initialization callbacks (like InitializingBean's {@code afterPropertiesSet}	 
	 * or a custom init-method). The bean will already be populated with property values.      
	 */
//实例化、依赖注入、初始化完毕时执行
	Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException;

}

 

 

由方法名字也可以看出,前者在实例化及依赖注入完成后、在任何初始化代码(比如配置文件中的init-method)调用之前调用;后者在初始化代码调用之后调用。

注意:

1、接口中的两个方法都要将传入的bean返回,而不能返回null,如果返回的是null那么我们通过getBean方法将得不到目标。

 

2、BeanFactory和ApplicationContext对待bean后置处理器稍有不同。ApplicationContext会自动检测在配置文件中实现了BeanPostProcessor接口的所有bean,并把它们注册为后置处理器,然后在容器创建bean的适当时候调用它,因此部署一个后置处理器同部署其他的bean并没有什么区别。而使用BeanFactory实现的时候,bean 后置处理器必须通过代码显式地去注册,在IoC容器继承体系中的ConfigurableBeanFactory接口中定义了注册方法:

 

/** 
 * Add a new BeanPostProcessor that will get applied to beans created 
 * by this factory. To be invoked during factory configuration. 
 * <p>Note: Post-processors submitted here will be applied in the order of 
 * registration; any ordering semantics expressed through implementing the 
 * {@link org.springframework.core.Ordered} interface will be ignored. Note 
 * that autodetected post-processors (e.g. as beans in an ApplicationContext) 
 * will always be applied after programmatically registered ones. 
 * @param beanPostProcessor the post-processor to register 
 */  
void addBeanPostProcessor(BeanPostProcessor beanPostProcessor); 

 

 

另外,不要将BeanPostProcessor标记为延迟初始化。因为如果这样做,Spring容器将不会注册它们,自定义逻辑也就无法得到应用。假如你在<beans />元素的定义中使用了'default-lazy-init'属性,请确信你的各个BeanPostProcessor标记为'lazy-init="false"'。

 

InstantiationAwareBeanPostProcessor

InstantiationAwareBeanPostProcessor是BeanPostProcessor的子接口,可以在Bean生命周期的另外两个时期提供扩展的回调接口,即实例化Bean之前(调用postProcessBeforeInstantiation方法)和实例化Bean之后(调用postProcessAfterInstantiation方法),该接口定义如下:
package org.springframework.beans.factory.config;  
  
import java.beans.PropertyDescriptor;  
  
import org.springframework.beans.BeansException;  
import org.springframework.beans.PropertyValues;  
  
public interface InstantiationAwareBeanPostProcessor extends BeanPostProcessor {  
  
    Object postProcessBeforeInstantiation(Class<?> beanClass, String beanName) throws BeansException;  
  
    boolean postProcessAfterInstantiation(Object bean, String beanName) throws BeansException;  
  
    PropertyValues postProcessPropertyValues(  
            PropertyValues pvs, PropertyDescriptor[] pds, Object bean, String beanName)  
            throws BeansException;  
  
}
 其使用方法与上面介绍的BeanPostProcessor接口类似,只时回调时机不同。
 
如果是使用ApplicationContext来生成并管理Bean的话则稍有不同,使用ApplicationContext来生成及管理Bean实例的话,在执行BeanFactoryAware的setBeanFactory()阶段后,若Bean类上有实现org.springframework.context.ApplicationContextAware接口,则执行其setApplicationContext()方法,接着才执行BeanPostProcessors的ProcessBeforeInitialization()及之后的流程。
分享到:
评论
2 楼 stan503 2017-09-25  
写的很好!  mark
1 楼 bo_hai 2016-12-15  
写的很好,再加一个实例就更完善啦。

相关推荐

    Spring 内置 BeanPostProcessor类图.zip

    在Spring框架中,BeanPostProcessor(BPP)是一个至关重要的接口,它允许用户自定义处理在Spring IoC容器中管理的bean的初始化前后过程。这个接口提供了两个核心的方法:`postProcessBeforeInitialization()` 和 `...

    Spring BeanPostProcessor接口使用详解

    Spring BeanPostProcessor接口是Spring框架中的一种后处理器接口,允许开发者在Bean初始化前后进行自定义处理。该接口提供了两个供开发者自定义的方法:postProcessBeforeInitialization和...

    Java自定义注解与spring BeanPostProcessor详解

    Java自定义注解和Spring的BeanPostProcessor是Java企业级开发中的两个重要概念,它们在构建灵活、可扩展的应用程序中发挥着关键作用。本文将深入探讨这两个话题,并结合源码分析,帮助开发者更好地理解和应用。 ...

    详解使用Spring的BeanPostProcessor优雅的实现工厂模式

    在Spring框架中,BeanPostProcessor(BPP)是一个强大的接口,它允许我们自定义bean的初始化和销毁过程。BPP是在bean实例化之后,但初始化之前以及销毁之前执行特定操作的回调机制。通过实现这个接口,我们可以对...

    spring BeanPostProcessor 生命周期

    spring使用模板模式,在bean的创建过程中安插了许多锚点,用户寻找对应的锚点,通过重写方法介入到bean的创建过程当中。本节通过重写这些锚点,学习如何使用BeanPostProcessor、获取各类BeanAware并且理清bean的生命...

    Spring-Reference_zh_CN(Spring中文参考手册)

    12.2.2. 在Spring的application context中创建 SessionFactory 12.2.3. HibernateTemplate 12.2.4. 不使用回调的基于Spring的DAO实现 12.2.5. 基于Hibernate3的原生API实现DAO 12.2.6. 编程式的事务划分 12.2.7. ...

    Spring中的后置处理器BeanPostProcessor详解

    Spring中的后置处理器BeanPostProcessor详解 在 Spring 框架中,BeanPostProcessor 是一个非常重要的组件,它提供了一种方式来在bean实例化、配置和初始化方法前后添加自定义逻辑处理。下面我们将详细介绍 ...

    Spring.pdf

    Spring框架中的Bean生命周期管理是Spring容器的基本工作之一。它涉及到从创建Bean实例、配置所有属性、到初始化完成后的可用以及销毁实例前的清理等一系列过程。掌握Spring Bean的生命周期对于理解Spring框架的运行...

    com-spring-ioc-demo:源码主要是学习Spring IOC的原理,以及对Bean的注册及控制,主要运用以下类对Spring进行扩展学习:BeanPostProcessor,BeanFactoryAware,BeanNameAware,ApplicationContextAware,FactoryBean,BeanDefinitionRegistryPostProcessor,BeanFactoryPostProcessor,BeanPostProcessor,ResourceLoaderA

    com-spring-ioc-demo:源码主要是学习Spring IOC的原理,以及对Bean的注册及控制,主要运用以下类对Spring进行扩展学习:BeanPostProcessor,BeanFactoryAware,BeanNameAware,ApplicationContextAware,FactoryBean...

    spring中注解的实现原理

    通过实现`BeanFactoryPostProcessor`或`BeanPostProcessor`接口,你可以扩展Spring的行为,使其在处理自定义注解时执行特定的操作。 总结来说,Spring中注解的实现原理涉及到元注解的定义、注解处理器的运行、Bean...

    Spring 中文和英文帮助文档API

    Spring框架是Java开发中不可或缺的一部分,它以其模块化、易用性和灵活性著称。Spring的主要目标是简化企业级应用的开发,通过提供依赖注入(Dependency Injection, DI)和面向切面编程(Aspect-Oriented ...

    Spring4中文文档

    文档最后还涉及到了Spring容器的扩展点,如BeanPostProcessor和BeanFactoryPostProcessor,这些扩展点让开发者有机会在Spring容器实例化Bean前后以及加载配置元数据前后执行自定义逻辑。 整体来看,Spring4中文文档...

    Spring 2.0中文API(chm格式)

    在Spring 2.0中,容器引入了更多扩展点,如BeanPostProcessor和InstantiationAwareBeanPostProcessor,使得开发者可以在特定时刻介入bean的创建过程,实现自定义逻辑。 除此之外,Spring 2.0还强化了与其它开源框架...

    Spring Annotaion Support详细介绍及简单实例

    要使用BeanPostProcessor,开发者需要编写一个实现了该接口的类,并且将该类的实例作为一个Bean注册到Spring容器中。当Spring容器启动时,它会检测到实现了BeanPostProcessor接口的Bean,并将其特殊处理。这些...

    解析Java的Spring框架的BeanPostProcessor发布处理器

    在Java的Spring框架中,BeanPostProcessor是一个至关重要的组件,它允许开发者在Spring IoC容器管理的bean实例化、初始化和销毁过程中插入自定义的行为。BeanPostProcessor接口提供了两个核心方法,`...

    Spring中文帮助文档

    6.8.1. 在Spring中使用AspectJ进行domain object的依赖注入 6.8.2. Spring中其他的AspectJ切面 6.8.3. 使用Spring IoC来配置AspectJ的切面 6.8.4. 在Spring应用中使用AspectJ加载时织入(LTW) 6.9. 更多资源 7...

    spring 中特殊bean用法

    在Spring框架中,Bean是核心概念,它代表了应用程序中的对象,这些对象由Spring容器管理其生命周期和依赖关系。特殊Bean用法主要涉及Spring提供的多种高级特性,包括但不限于工厂方法、 prototype scope、AOP代理、...

    spring5.0.2中文官网文档

    在Spring框架中,通过面向接口的编程思想,能够使得业务逻辑层与其他层次如数据访问层、表示层等实现解耦,提升程序的可维护性与可扩展性。Spring 5.0.2中文官网文档中详细阐述了Spring框架的多个核心组件,其中最...

    Spring 5 Design Patterns

    Spring的BeanPostProcessor接口提供了一个适配器机制,允许开发者在bean初始化前后插入自定义逻辑,使得不同的组件能够相互协作。 以上只是Spring 5中设计模式的部分应用,实际上Spring框架充分利用了各种设计模式...

Global site tag (gtag.js) - Google Analytics