bean的三个生命周期简述,bean的生命周期可以引用的接口

首页 > 经验 > 作者:YD1662022-11-01 13:53:07

spring作为当前java最流行、最强大的轻量级框架,受到了程序员的热烈欢迎。准确的了解Spring bean的生命周期是非常必要的。我们通常使用ApplicationContext作为Spring容器。这里,我们讲的也是 ApplicationContext中Bean的生命周期。而实际上Beanfactory也是差不多的,只不过处理器需要手动注册。

转载请注明地址 http://www.cnblogs.com/zrtqsk/p/3735273.html,谢谢。

一、生命周期流程图:

Spring Bean的完整生命周期从创建Spring容器开始,直到最终Spring容器销毁Bean,这其中包含了一系列关键点。

bean的三个生命周期简述,bean的生命周期可以引用的接口(1)

bean的三个生命周期简述,bean的生命周期可以引用的接口(2)

 

若容器注册了以上各种接口,程序那么将会按照以上的流程进行。下面将仔细讲解各接口作用。

二、各种接口方法分类

Bean的完整生命周期经历了各种方法调用,这些方法可以划分为以下几类:

1、Bean自身的方法 : 这个包括了Bean本身调用的方法和通过配置文件中<bean>的init-method和destroy-method指定的方法

2、Bean级生命周期接口方法 : 这个包括了BeanNameAware、BeanFactoryAware、InitializingBean和DiposableBean这些接口的方法

3、容器级生命周期接口方法 : 这个包括了InstantiationAwareBeanPostProcessor 和 BeanPostProcessor 这两个接口实现,一般称它们的实现类为“后处理器”。

4、工厂后处理器接口方法 : 这个包括了BeanFactoryPostProcessor等等非常有用的工厂后处理器接口的方法。工厂后处理器也是容器级的。在应用上下文装配配置文件之后立即调用。

三、演示

我们用一个简单的Spring Bean来演示一下Spring Bean的生命周期。

1、首先是一个简单的Spring Bean,调用Bean自身的方法和Bean级生命周期接口方法,为了方便演示,它实现了BeanNameAware、BeanFactoryAware、InitializingBean和DiposableBean这4个接口,同时有2个方法,对应配置文件中<bean>的init-method和destroy-method。如下:

[java] view plain copy

  1. <span style="font-family:SimSun;font-size:14px;">package springBeanTest;
  2. import org.springframework.beans.BeansException;
  3. import org.springframework.beans.factory.BeanFactory;
  4. import org.springframework.beans.factory.BeanFactoryAware;
  5. import org.springframework.beans.factory.BeanNameAware;
  6. import org.springframework.beans.factory.DisposableBean;
  7. import org.springframework.beans.factory.InitializingBean;
  8. /**
  9. * @author qsk
  10. */
  11. public class Person implements BeanFactoryAware, BeanNameAware,
  12. InitializingBean, DisposableBean {
  13. private String name;
  14. private String address;
  15. private int phone;
  16. private BeanFactory beanFactory;
  17. private String beanName;
  18. public Person() {
  19. System.out.println("【构造器】调用Person的构造器实例化");
  20. }
  21. public String getName() {
  22. return name;
  23. }
  24. public void setName(String name) {
  25. System.out.println("【注入属性】注入属性name");
  26. this.name = name;
  27. }
  28. public String getAddress() {
  29. return address;
  30. }
  31. public void setAddress(String address) {
  32. System.out.println("【注入属性】注入属性address");
  33. this.address = address;
  34. }
  35. public int getPhone() {
  36. return phone;
  37. }
  38. public void setPhone(int phone) {
  39. System.out.println("【注入属性】注入属性phone");
  40. this.phone = phone;
  41. }
  42. @Override
  43. public String toString() {
  44. return "Person [address=" address ", name=" name ", phone="
  45. phone "]";
  46. }
  47. // 这是BeanFactoryAware接口方法
  48. @Override
  49. public void setBeanFactory(BeanFactory arg0) throws BeansException {
  50. System.out
  51. .println("【BeanFactoryAware接口】调用BeanFactoryAware.setBeanFactory()");
  52. this.beanFactory = arg0;
  53. }
  54. // 这是BeanNameAware接口方法
  55. @Override
  56. public void setBeanName(String arg0) {
  57. System.out.println("【BeanNameAware接口】调用BeanNameAware.setBeanName()");
  58. this.beanName = arg0;
  59. }
  60. // 这是InitializingBean接口方法
  61. @Override
  62. public void afterPropertiesSet() throws Exception {
  63. System.out
  64. .println("【InitializingBean接口】调用InitializingBean.afterPropertiesSet()");
  65. }
  66. // 这是DiposibleBean接口方法
  67. @Override
  68. public void destroy() throws Exception {
  69. System.out.println("【DiposibleBean接口】调用DiposibleBean.destory()");
  70. }
  71. // 通过<bean>的init-method属性指定的初始化方法
  72. public void myInit() {
  73. System.out.println("【init-method】调用<bean>的init-method属性指定的初始化方法");
  74. }
  75. // 通过<bean>的destroy-method属性指定的初始化方法
  76. public void myDestory() {
  77. System.out.println("【destroy-method】调用<bean>的destroy-method属性指定的初始化方法");
  78. }
  79. }</span>

2、接下来是演示BeanPostProcessor接口的方法,如下:

[java] view plain copy

  1. <span style="font-family:SimSun;font-size:14px;">package springBeanTest;
  2. import org.springframework.beans.BeansException;
  3. import org.springframework.beans.factory.config.BeanPostProcessor;
  4. public class MyBeanPostProcessor implements BeanPostProcessor {
  5. public MyBeanPostProcessor() {
  6. super();
  7. System.out.println("这是BeanPostProcessor实现类构造器!!");
  8. // TODO Auto-generated constructor stub
  9. }
  10. @Override
  11. public Object postProcessAfterInitialization(Object arg0, String arg1)
  12. throws BeansException {
  13. System.out
  14. .println("BeanPostProcessor接口方法postProcessAfterInitialization对属性进行更改!");
  15. return arg0;
  16. }
  17. @Override
  18. public Object postProcessBeforeInitialization(Object arg0, String arg1)
  19. throws BeansException {
  20. System.out
  21. .println("BeanPostProcessor接口方法postProcessBeforeInitialization对属性进行更改!");
  22. return arg0;
  23. }
  24. }</span>

如上,BeanPostProcessor接口包括2个方法postProcessAfterInitialization和postProcessBeforeInitialization,这两个方法的第一个参数都是要处理的Bean对象,第二个参数都是Bean的name。返回值也都是要处理的Bean对象。这里要注意。

3、InstantiationAwareBeanPostProcessor接口本质是BeanPostProcessor的子接口,一般我们继承Spring为其提供的适配器类InstantiationAwareBeanPostProcessorAdapter来使用它,如下:

[java] view plain copy

  1. <span style="font-family:SimSun;font-size:14px;">package springBeanTest;
  2. import java.beans.PropertyDescriptor;
  3. import org.springframework.beans.BeansException;
  4. import org.springframework.beans.PropertyValues;
  5. import org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessorAdapter;
  6. public class MyInstantiationAwareBeanPostProcessor extends
  7. InstantiationAwareBeanPostProcessorAdapter {
  8. public MyInstantiationAwareBeanPostProcessor() {
  9. super();
  10. System.out
  11. .println("这是InstantiationAwareBeanPostProcessorAdapter实现类构造器!!");
  12. }
  13. // 接口方法、实例化Bean之前调用
  14. @Override
  15. public Object postProcessBeforeInstantiation(Class beanClass,
  16. String beanName) throws BeansException {
  17. System.out
  18. .println("InstantiationAwareBeanPostProcessor调用postProcessBeforeInstantiation方法");
  19. return null;
  20. }
  21. // 接口方法、实例化Bean之后调用
  22. @Override
  23. public Object postProcessAfterInitialization(Object bean, String beanName)
  24. throws BeansException {
  25. System.out
  26. .println("InstantiationAwareBeanPostProcessor调用postProcessAfterInitialization方法");
  27. return bean;
  28. }
  29. // 接口方法、设置某个属性时调用
  30. @Override
  31. public PropertyValues postProcessPropertyValues(PropertyValues pvs,
  32. PropertyDescriptor[] pds, Object bean, String beanName)
  33. throws BeansException {
  34. System.out
  35. .println("InstantiationAwareBeanPostProcessor调用postProcessPropertyValues方法");
  36. return pvs;
  37. }
  38. }</span>

这个有3个方法,其中第二个方法postProcessAfterInitialization就是重写了BeanPostProcessor的方法。第三个方法postProcessPropertyValues用来操作属性,返回值也应该是PropertyValues对象。

4、演示工厂后处理器接口方法,如下:

[java] view plain copy

  1. <span style="font-family:SimSun;font-size:14px;">package springBeanTest;
  2. import org.springframework.beans.BeansException;
  3. import org.springframework.beans.factory.config.BeanDefinition;
  4. import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
  5. import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
  6. public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
  7. public MyBeanFactoryPostProcessor() {
  8. super();
  9. System.out.println("这是BeanFactoryPostProcessor实现类构造器!!");
  10. }
  11. @Override
  12. public void postProcessBeanFactory(ConfigurableListableBeanFactory arg0)
  13. throws BeansException {
  14. System.out
  15. .println("BeanFactoryPostProcessor调用postProcessBeanFactory方法");
  16. BeanDefinition bd = arg0.getBeanDefinition("person");
  17. bd.getPropertyValues().addPropertyValue("phone", "110");
  18. }
  19. }</span>

5、配置文件如下beans.xml,很简单,使用ApplicationContext,处理器不用手动注册:

[html] view plain copy

  1. <span style="font-family:SimSun;font-size:14px;"><?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  5. xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
  8. <bean id="beanPostProcessor" class="springBeanTest.MyBeanPostProcessor">
  9. </bean>
  10. <bean id="instantiationAwareBeanPostProcessor" class="springBeanTest.MyInstantiationAwareBeanPostProcessor">
  11. </bean>
  12. <bean id="beanFactoryPostProcessor" class="springBeanTest.MyBeanFactoryPostProcessor">
  13. </bean>
  14. <bean id="person" class="springBeanTest.Person" init-method="myInit"
  15. destroy-method="myDestory" scope="singleton" p:name="张三" p:address="广州"
  16. p:phone="15900000000" />
  17. </beans></span>

6、下面测试一下:

[java] view plain copy

  1. <span style="font-family:SimSun;font-size:14px;">package springBeanTest;
  2. import org.springframework.context.ApplicationContext;
  3. import org.springframework.context.support.ClassPathXmlApplicationContext;
  4. public class BeanLifeCycle {
  5. public static void main(String[] args) {
  6. System.out.println("现在开始初始化容器");
  7. ApplicationContext factory = new ClassPathXmlApplicationContext(
  8. "springBeanTest/beans.xml");
  9. System.out.println("容器初始化成功");
  10. // 得到Preson,并使用
  11. Person person = factory.getBean("person", Person.class);
  12. System.out.println(person);
  13. System.out.println("现在开始关闭容器!");
  14. ((ClassPathXmlApplicationContext) factory).registerShutdownHook();
  15. }
  16. }</span>

关闭容器使用的是实际是AbstractApplicationContext的钩子方法。

我们来看一下结果:

现在开始初始化容器

2014-5-18 15:46:20 org.springframework.context.support.AbstractApplicationContext prepareRefresh

信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@19a0c7c: startup date [Sun May 18 15:46:20 CST 2014]; root of context hierarchy

2014-5-18 15:46:20 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions

信息: Loading XML bean definitions from class path resource [springBeanTest/beans.xml]

这是BeanFactoryPostProcessor实现类构造器!!

BeanFactoryPostProcessor调用postProcessBeanFactory方法

这是BeanPostProcessor实现类构造器!!

这是InstantiationAwareBeanPostProcessorAdapter实现类构造器!!

2014-5-18 15:46:20 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons

信息: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@9934d4: defining beans [beanPostProcessor,instantiationAwareBeanPostProcessor,beanFactoryPostProcessor,person]; root of factory hierarchy

InstantiationAwareBeanPostProcessor调用postProcessBeforeInstantiation方法

【构造器】调用Person的构造器实例化

InstantiationAwareBeanPostProcessor调用postProcessPropertyValues方法

【注入属性】注入属性address

【注入属性】注入属性name

【注入属性】注入属性phone

【BeanNameAware接口】调用BeanNameAware.setBeanName()

【BeanFactoryAware接口】调用BeanFactoryAware.setBeanFactory()

BeanPostProcessor接口方法postProcessBeforeInitialization对属性进行更改!

【InitializingBean接口】调用InitializingBean.afterPropertiesSet()

【init-method】调用<bean>的init-method属性指定的初始化方法

BeanPostProcessor接口方法postProcessAfterInitialization对属性进行更改!

InstantiationAwareBeanPostProcessor调用postProcessAfterInitialization方法

容器初始化成功

Person [address=广州, name=张三, phone=110]

现在开始关闭容器!

【DiposibleBean接口】调用DiposibleBean.destory()

【destroy-method】调用<bean>的destroy-method属性指定的初始化方法

/**

* ————————如果觉得本博文还行,别忘了推荐一下哦,谢谢!

* 作者:钱书康

* 欢迎转载,请保留此段声明。

* 出处:http://www.cnblogs.com/zrtqsk/

*/

3 import org.springframework.context.ApplicationContext;

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

5

6 public class BeanLifeCycle {

7

8 public static void main(String[] args) {

9

10 System.out.println("现在开始初始化容器");

11

12 ApplicationContext factory = new ClassPathXmlApplicationContext("springBeanTest/beans.xml");

13 System.out.println("容器初始化成功");

14 //得到Preson,并使用

15 Person person = factory.getBean("person",Person.class);

16 System.out.println(person);

17

18 System.out.println("现在开始关闭容器!");

19 ((ClassPathXmlApplicationContext)factory).registerShutdownHook();

20 }

21

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.