BeanPostProcessor
我们关注的第一个扩展点是BeanPostProcessor借口,它定义了两个方法postProcessBeforeInitialization(Object bean, String beanName)和postProcessAfterInitialization(Object bean, String beanName)。实现该接口可提供自定义的实例化逻辑,依赖解析逻辑等。如果你想在Spring容器完成bean的实例化,配置和其他的初始化后执行一些自定义逻辑,我们可以通过插入一个或多个BeanPostProcessor实现。
书上说可以通过设置order属性来控制BeanPostProcessor的执行次序,前提是BeanPostProcessor还要实现Ordered接口的时候。不好意思,这个我没有测试过。
BeanPostProcessor可以对bean(或对象)的多个实例进行操作,也就是说Ioc容器会为你实例化bean,然后BeanPostProcessor去处理它。另外,BeanPostProcessor的作用域是容器级德,它只对容器中的bean进行后置处理,它不会对另一个容器中的bean进行后置处理。
当BeanPostProcessor接口的实现类被注册为容器的后置处理器后,对于由此容器创建的每一个bean实例在初始化方法调用前,后置处理器都会从容器中获取一个回调。
另外注意的一点就是BeanFactory和ApplicationContext对待bean后置处理器有点不同。ApplicationContext会自动检测在配置文件中实现了BeanPostProcessor接口的所有bean,并把它注册为后置处理器,然后在容器创建好bean之后调用它。而使用BeanFactory的时候,bean后置处理器必须通过下面的代码显式的去注册。
例如:ConfigurableBeanFactory factory = new XmlBeanFactory("");
MyBeanPostProcessor postProcessor = new MyBeanPostProcessor();
factory.addBeanPostProcessor(postProcessor);
因为显式注册不是很方便,这也是为什么在各种Spring应用中首选ApplicationContext的一个原因。
下面通过一个例子来了解一下BeanPostProcessor的应用。
首先是一个实现了BeanPostProcessor接口的类,InstantiationTracingBeanPostProcessor
代码如下:
public class InstantiationTracingBeanPostProcessor implements BeanPostProcessor{
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
return bean;
}
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
if(bean instanceof MessageSource)
{
System.out.println("MessageSource before Initialization Start!!!");
System.out.println("Bean '" + beanName + "' created:" + bean.toString());
System.out.println("MessageSource before Initialization End!!!");
}
// else if(bean instanceof PostProcess1)
// {
// System.out.println("PostProcess1 before Initialization Start!!!");
// System.out.println("Bean '" + beanName + "' created:" + bean.toString());
// System.out.println("PostProcess1 before Initialization End!!!");
// }
return bean;
}
}
下面是一个配置文件,代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:lang="http://www.springframework.org/schema.lang"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd">
<bean id="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames" value="test-messages"></property>
</bean>
<bean id="postProcess1"
class="co.jp.beanPostProcess.PostProcess1">
<property name="name" value="xiaohailin"></property>
</bean>
<bean
class="co.jp.beanPostProcess.InstantiationTracingBeanPostProcessor" />
</beans>
测试的主类的代码如下:
public class BeanPostProcessorDemo {
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext(
"beanPostProcess.xml");
ResourceBundleMessageSource hello = (ResourceBundleMessageSource) ctx
.getBean("messageSource");
System.out.println(hello);
PostProcess1 hello2 = (PostProcess1) ctx.getBean("postProcess1");
System.out.println(hello2);
}
}
运行结果:
[2009/08/08 17:40:40][INFO][AbstractApplicationContext] Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@1ac3c08: display name [org.springframework.context.support.ClassPathXmlApplicationContext@1ac3c08]; startup date [Mon Aug 09 17:40:40 CST 2008]; root of context hierarchy
[2009/08/08 17:40:40][INFO][XmlBeanDefinitionReader] Loading XML bean definitions from class path resource [beanPostProcess.xml]
[2009088 17:40:41][INFO][AbstractApplicationContext] Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@1ac3c08]: org.springframework.beans.factory.support.DefaultListableBeanFactory@1507fb2
[2009/08/08 17:40:41][INFO][AbstractApplicationContext$BeanPostProcessorChecker] Bean 'co.jp.beanPostProcess.InstantiationTracingBeanPostProcessor' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
MessageSource before Initialization Start!!!
Bean 'messageSource' created:org.springframework.context.support.ResourceBundleMessageSource: basenames=[test-messages]
MessageSource before Initialization End!!!
[2009/08/08 17:40:41][INFO][DefaultListableBeanFactory] Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1507fb2: defining beans [messageSource,postProcess1,co.jp.beanPostProcess.InstantiationTracingBeanPostProcessor]; root of factory hierarchy
org.springframework.context.support.ResourceBundleMessageSource: basenames=[test-messages]
co.jp.beanPostProcess.PostProcess1@1995d80
分享到:
相关推荐
Java自定义注解和Spring的BeanPostProcessor是Java企业级开发中的两个重要概念,它们在构建灵活、可扩展的应用程序中发挥着关键作用。本文将深入探讨这两个话题,并结合源码分析,帮助开发者更好地理解和应用。 ...
在Spring框架中,BeanPostProcessor(BPP)是一个至关重要的接口,它允许用户自定义处理在Spring IoC容器中管理的bean的初始化前后过程。这个接口提供了两个核心的方法:`postProcessBeforeInitialization()` 和 `...
Spring BeanPostProcessor接口使用详解 Spring BeanPostProcessor接口是Spring框架中的一种后处理器接口,允许开发者在Bean初始化前后进行自定义处理。该接口提供了两个供开发者自定义的方法:...
在Spring框架中,`BeanPostProcessor`是一个非常重要的接口,它允许我们自定义bean的处理逻辑,这包括在bean初始化前后进行干预。`@Autowired`注解是Spring提供的一种依赖注入方式,它能够自动匹配并注入合适的bean...
【Spring的BeanPostProcessor与工厂模式】 在Spring框架中,BeanPostProcessor(BPP)是一个强大的接口,它允许我们自定义bean的初始化和销毁过程。BPP是在bean实例化之后,但初始化之前以及销毁之前执行特定操作的...
BeanDefinitionRegistryPostProcessor,BeanFactoryPostProcessor,BeanPostProcessor,ResourceLoaderAware,InvocationHandler。 BeanPostProcessor接口的实现类如何被注册到Spring容器2.更改bean的定义...
在Spring框架中,BeanPostProcessor(BPP)是一个至关重要的组件,它允许开发者在Spring容器创建Bean实例之后和初始化之前,以及初始化之后和实例化完成之前进行额外的处理。这为自定义Bean的行为提供了强大的灵活性...
BeanPostProcessor:后置处理器 spring使用模板模式,在bean的创建过程中安插了许多锚点,用户寻找对应的锚点,通过重写方法介入到bean的创建过程当中。本节通过重写这些锚点,学习如何使用BeanPostProcessor、获取...
Spring中的后置处理器BeanPostProcessor详解 在 Spring 框架中,BeanPostProcessor 是一个非常重要的组件,它提供了一种方式来在bean实例化、配置和初始化方法前后添加自定义逻辑处理。下面我们将详细介绍 ...
在Java的Spring框架中,BeanPostProcessor是一个至关重要的组件,它允许开发者在Spring IoC容器管理的bean实例化、初始化和销毁过程中插入自定义的行为。BeanPostProcessor接口提供了两个核心方法,`...
最近正在看spring官网,看Spring IOC的时候看Spring容器扩展点的时候发现了BeanPostProcessor 这个接口。下面是官方对它的详细描述: BeanPostProcessor接口定义了回调方法,您可以实现提供自己的(或覆盖容器的默认...
本知识点将围绕Spring AOP的核心组件进行分析,尤其是AnnotationAwareAspectJAutoProxyCreator类的作用,以及BeanPostProcessor接口在创建AOP代理中的角色。 首先,AnnotationAwareAspectJAutoProxyCreator是Spring...
`BeanPostProcessor` 是Spring提供的一个接口,而`XXXPostProcessor` 可能是用户自定义实现该接口的具体类。 `BeanPostProcessor` 接口包含两个主要方法: 1. `postProcessBeforeInitialization`: 这个方法在bean的...
该信息提示的意思是:BeanPostProcessorChecker检查到xxx不适合所有的BeanPostProcessor来处理。即,存在出现“自动注入”不合适或无效的信息。 是否为错误: 对于INFO级别的输出信息来说,一般情况下并不算错误,...
本篇笔记主要涉及Spring框架的BeanPostProcessor机制、@Value注解的使用以及@Autowired的自动装配。 **一、BeanPostProcessor机制** BeanPostProcessor是Spring框架中一个非常重要的接口,它允许开发者在bean的...
而AnnotationAwareAspectJAutoProxyCreator是AOP中一个非常核心的类,它是作为后置处理器(BeanPostProcessor)来实现AOP功能的。 AnnotationAwareAspectJAutoProxyCreator类是Spring AOP用来创建代理对象的核心...
⑤ 如果存在类实现 BeanPostProcessor(后处理 Bean),执行 postProcessBeforeInitialization ⑥ 如果 Bean 实现 InitializingBean 执行 afterPropertiesSet ⑦ 如果 Bean 实现 DisposableBean 执行 destroy ⑧ ...
这篇SSH笔记主要探讨了如何在Spring4中利用BeanPostProcessor接口定制Bean的初始化和销毁过程。 首先,Bean的生命周期可以分为以下几个阶段: 1. **实例化**:Spring容器在遇到一个Bean定义时,会根据定义中的`...
4. BeanPostProcessor的前置处理:在Bean的初始化方法调用之前,Spring允许BeanPostProcessor的postProcessBeforeInitialization方法对Bean实例进行额外的处理。 5. 初始化方法:若Bean在配置中指定了init-method,...