Spring - Bean 后处理器



BeanPostProcessor 接口定义了您可以实现的回调方法,以提供您自己的实例化逻辑、依赖关系解析逻辑等。您还可以通过插入一个或多个 BeanPostProcessor 实现,在 Spring 容器完成 Bean 的实例化、配置和初始化后实现一些自定义逻辑。

您可以配置多个 BeanPostProcessor 接口,并且可以通过设置 BeanPostProcessor 实现的order属性来控制这些 BeanPostProcessor 接口的执行顺序,前提是 BeanPostProcessor 接口实现了Ordered接口。

BeanPostProcessors 对 Bean(或对象)实例进行操作,这意味着 Spring IoC 容器会实例化一个 Bean 实例,然后 BeanPostProcessor 接口执行其工作。

ApplicationContext 会自动检测任何使用BeanPostProcessor接口实现定义的 Bean,并将这些 Bean 注册为后处理器,以便容器在创建 Bean 时适当地调用它们。

示例

以下示例演示如何在 ApplicationContext 的上下文中编写、注册和使用 BeanPostProcessors。

让我们准备好一个可用的 Eclipse IDE,并按照以下步骤创建一个 Spring 应用程序:

步骤 描述
1 创建一个名为SpringExample的项目,并在创建的项目中的src文件夹下创建一个包com.tutorialspoint
2 Spring HelloWorld 示例章节中所述,使用添加外部JAR选项添加所需的 Spring 库。
3 com.tutorialspoint包下创建Java类HelloWorldInitHelloWorldMainApp
4 src文件夹下创建Beans配置文件Beans.xml
5 最后一步是创建所有Java文件和Bean配置文件的内容,并运行应用程序,如下所述。

以下是HelloWorld.java文件的内容:

package com.tutorialspoint;

public class HelloWorld {
   private String message;

   public void setMessage(String message){
      this.message  = message;
   }
   public void getMessage(){
      System.out.println("Your Message : " + message);
   }
   public void init(){
      System.out.println("Bean is going through init.");
   }
   public void destroy(){
      System.out.println("Bean will destroy now.");
   }
}

这是一个实现 BeanPostProcessor 的非常基本的示例,它在初始化任何 Bean 之前和之后打印 Bean 名称。您可以实现更复杂的逻辑,因为您可以在两个后处理器方法内部访问 Bean 对象。

以下是InitHelloWorld.java文件的内容:

package com.tutorialspoint;

import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.beans.BeansException;

public class InitHelloWorld implements BeanPostProcessor {
   public Object postProcessBeforeInitialization(Object bean, String beanName) 
      throws BeansException {
      
      System.out.println("BeforeInitialization : " + beanName);
      return bean;  // you can return any other object as well
   }
   public Object postProcessAfterInitialization(Object bean, String beanName) 
      throws BeansException {
      
      System.out.println("AfterInitialization : " + beanName);
      return bean;  // you can return any other object as well
   }
}

以下是MainApp.java文件的内容。在这里,您需要注册一个在AbstractApplicationContext类上声明的关闭钩子registerShutdownHook()方法。这将确保优雅地关闭并调用相关的销毁方法。

package com.tutorialspoint;

import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
   public static void main(String[] args) {
      AbstractApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");

      HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
      obj.getMessage();
      context.registerShutdownHook();
   }
}

以下是init和destroy方法所需的配置文件Beans.xml

<?xml version = "1.0" encoding = "UTF-8"?>

<beans xmlns = "http://www.springframework.org/schema/beans"
   xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation = "http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

   <bean id = "helloWorld" class = "com.tutorialspoint.HelloWorld"
      init-method = "init" destroy-method = "destroy">
      <property name = "message" value = "Hello World!"/>
   </bean>

   <bean class = "com.tutorialspoint.InitHelloWorld" />

</beans>

创建源代码和 Bean 配置文件后,让我们运行应用程序。如果您的应用程序一切正常,它将打印以下消息:

BeforeInitialization : helloWorld
Bean is going through init.
AfterInitialization : helloWorld
Your Message : Hello World!
Bean will destroy now.
广告