Life Cycle Management of a Spring Bean

原文地址:http://javabeat.net/life-cycle-management-of-a-spring-bean/

1) Introduction

This article would brief about how a Spring Bean is managed in IOC (Inversion of Control) Container. Spring Beans exist within the Container as long as they are needed by the Application. There are various life-cycle interfaces and methods that will be called by the IOC Container. The pre-requisite for this article is some basic knowledge in Spring which can be got by reading the article in Javabeat Introduction to Spring Web Framework.

2) Bean Life Cycle

Spring Bean represents a POJO component performing some useful operation. AllSpring Beans reside within a Spring Container also known as IOC Container. The Spring Framework is transparent and thereby hides most of the complex infrastructure and the communication that happens between the Spring Container and the Spring Beans. This section lists the sequence of activities that will take place between the time of Bean Instantiation and hand over of the Bean reference to the Client Application.

  1. The Bean Container finds the definition of the Spring Bean in the Configuration file.
  2. The Bean Container creates an instance of the Bean using Java Reflection API.
  3. If any properties are mentioned, then they are also applied. If the property itself is a Bean, then it is resolved and set.
  4. If the Bean class implements the BeanNameAware interface, then the setBeanName()method will be called by passing the name of the Bean.
  5. If the Bean class implements the BeanClassLoaderAware interface, then the methodsetBeanClassLoader() method will be called by passing an instance of theClassLoader object that loaded this bean.
  6. If the Bean class implements the BeanFactoryAware interface, then the methodsetBeanFactory() will be called by passing an instance of BeanFactory object.
  7. If there are any BeanPostProcessors object associated with the BeanFactory that loaded the Bean, then the method postProcessBeforeInitialization() will be called even before the properties for the Bean are set.
  8. If the Bean class implements the InitializingBean interface, then the methodafterPropertiesSet() will be called once all the Bean properties defined in the Configuration file are set.
  9. If the Bean definition in the Configuration file contains a 'init-method' attribute, then the value for the attribute will be resolved to a method name in the Bean class and that method will be called.
  10. The postProcessAfterInitialization() method will be called if there are any Bean Post Processors attached for the Bean Factory object.
  11. If the Bean class implements the DisposableBean interface, then the methoddestroy() will be called when the Application no longer needs the bean reference.
  12. If the Bean definition in the Configuration file contains a 'destroy-method'attribute, then the corresponding method definition in the Bean class will be called.

3) Life Cycle phases

3.1) Bean Name Aware Interface

If the Bean Implementation class wants to know the name of the Bean as configured and maintained by the Bean Factory class, then the Bean class should implement the interface BeanNameAware and override the setBeanName() method. The Bean Factory after reading the Bean definition from the Configuration file will come to know the name of the Bean and will pass this name as an argument to the setBeanName() method.

package javabeat.net.articles.spring.lifecycle;

import org.springframework.beans.factory.BeanNameAware;

public class LanguageBean implements BeanNameAware
{
private String languageName;
private String beanName; public LanguageBean()
{
} public String getLanguageName()
{
return languageName;
} public void setLanguageName(String languageName)
{
this.languageName = languageName;
} @Override
public void setBeanName(String beanName)
{
this.beanName = beanName;
} public String getBeanName()
{
return beanName;
}
}

The above sample class provides one such implementation and the below client code uses the above class to know the name of the bean.

static void beanNameAwareTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
BeanFactory beanFactory = new XmlBeanFactory(resource);
LanguageBean javaLanguage = (LanguageBean)beanFactory.getBean("javaLanguage");
System.out.println(javaLanguage.getLanguageName());
System.out.println(javaLanguage.getBeanName());
}

The following piece of Xml code snippet goes into the Xml Configuration file.

<bean id="javaLanguage">
<property name="languageName" value="Java"/>
</bean>

3.2) Bean Class Loader Aware Interface

package javabeat.net.articles.spring.lifecycle;

import org.springframework.beans.factory.BeanClassLoaderAware;

public class TestBeanWithClassLoaderAware implements BeanClassLoaderAware
{
private ClassLoader classLoader; @Override
public void setBeanClassLoader(ClassLoader classLoader)
{
this.classLoader = classLoader;
} public ClassLoader getBeanClassLoader()
{
return classLoader;
}
}

At times, a Client Application may wish to know the details of the Class Loader through which Bean objects are loaded. In such a case, the Bean class should implement theBeanClassLoaderAware interface and override the setBeanClassLoader() method. TheBean Factory object will pass an instance of the ClassLoader object that loaded this Bean to the setBeanClassLoader() method.

static void beanClassLoaderAwareTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
BeanFactory beanFactory = new XmlBeanFactory(resource);
TestBeanWithClassLoaderAware classLoaderAwareBean =
(TestBeanWithClassLoaderAware)beanFactory.getBean("classLoaderAwareBean");
ClassLoader beanClassLoader = classLoaderAwareBean.getBeanClassLoader();
System.out.println(beanClassLoader.getClass());
}

The above client program uses the TestBeanWithClassLoaderAware object and the following is the Xml configuration information for the above Spring Bean.

<bean id="classLoaderAwareBean" class="javabeat.net.articles.spring.lifecycle.TestBeanWithClassLoaderAware">
</bean>

3.3) Bean Factory Aware Interface

Bean Factory object is responsible for loading and creating Bean instances. This object is sufficient for simple cases. However situations may demand the usage ofApplicationContext and WebApplicationContext for complex scenarios. BothApplicationContext and WebApplicationContext extend the BeanFactory class and provides advanced configuration such as loading resourcespublishing events etc. So, there must be way for the Spring Bean to know which Bean Factory has actually loaded it. Here comes the BeanFactoryAware interface in which the method setBeanFactory()will be passed an instance of the Bean Factory object that configured and created this Bean.

package javabeat.net.articles.spring.lifecycle;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware; public class BeanWithBeanFactoryAware implements BeanFactoryAware
{
private BeanFactory beanFactory; @Override
public void setBeanFactory(BeanFactory beanFactory) throws BeansException
{
this.beanFactory = beanFactory;
} public BeanFactory getBeanFactory()
{
return beanFactory;
}
}

The following client code makes use of the above BeanWithBeanFactoryAware Bean. The Bean Factory object can either be an instance of BeanFactoryApplicationContext,WebApplicationContext, etc.

static void beanFactoryAwareTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
BeanFactory xmlBeanFactory = new XmlBeanFactory(resource);
BeanWithBeanFactoryAware beanFactoryAwareBean =
(BeanWithBeanFactoryAware)xmlBeanFactory.getBean("beanFactoryAwareBean");
BeanFactory beanFactory = beanFactoryAwareBean.getBeanFactory();
// Do something with this beanFactory object.
}

The following code is the Bean definition information for the above Bean which goes into the Configuration file.

<bean id="beanFactoryAwareBean" class="javabeat.net.articles.spring.lifecycle.BeanWithBeanFactoryAware">
</bean>

3.4) Bean Post Processor

Customization of Bean instances in an Application can happen for variety of reasons. For example, once a Bean object is created, various other data from a legacy system has to be populated on the Bean object. It may not be possible to configure the legacy data information in the Configuration file.

package javabeat.net.articles.spring.lifecycle;

import java.util.List;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor; public class DatabaseRow
{
private String rowId;
private int noOfColumns;
private List values; public DatabaseRow()
{
} public String getRowId()
{
return rowId;
} public void setRowId(String rowId)
{
this.rowId = rowId;
} public int getNoOfColumns()
{
return noOfColumns;
} public void setNoOfColumns(int noOfColumns)
{
this.noOfColumns = noOfColumns;
} public List getValues()
{
return values;
} public void setValues(List values)
{
this.values = values;
}
}

Let us consider a simple example for this. The above class represents a Database row and let us consider that even before the properties are set for this Bean object, the row-id and the number of columns in the row has to be populated. And once all the properties are set, then some other dependant properties also has to be set.
DBRowBeanPostProcessor.java

package javabeat.net.articles.spring.lifecycle;

import java.util.Arrays;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor; public class DBRowBeanPostProcessor implements BeanPostProcessor
{ @Override
public Object postProcessBeforeInitialization(Object bean, String beanName)
throws BeansException
{
System.out.println("Before Initialization");
System.out.println("Bean object: " + bean);
System.out.println("Bean name: " + beanName); DatabaseRow dbRow = null;
if (bean instanceof DatabaseRow)
{
dbRow = (DatabaseRow)bean;
dbRow.setRowId("ROWID-001");
dbRow.setNoOfColumns(3);
return dbRow;
}
return null;
} @Override
public Object postProcessAfterInitialization(Object bean, String beanName)
throws BeansException
{
System.out.println("After Initialization");
System.out.println("Bean object: " + bean);
System.out.println("Bean name: " + beanName); DatabaseRow dbRow = null;
if (bean instanceof DatabaseRow)
{
dbRow = (DatabaseRow)bean;
dbRow.setValues(Arrays.asList("Antony", "10", "93232"));
return dbRow;
}
return null;
}
}

We have defined one Bean Post Processor class for customizing the behavior for some set of Beans with common nature. The method postProcessBeforeInitialization() will be called even before the properties for the Bean are set. And the methodpostProcessAfterInitialization() will be called after the properties for the Bean object are set.

static void beanPostProcessorTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
ConfigurableBeanFactory xmlBeanFactory = new XmlBeanFactory(resource); DBRowBeanPostProcessor processor = new DBRowBeanPostProcessor();
xmlBeanFactory.addBeanPostProcessor(processor); DatabaseRow databaseRow =
(DatabaseRow)xmlBeanFactory.getBean("databaseRow");
System.out.println("Row Id: " + databaseRow.getRowId());
System.out.println("Columns: " + databaseRow.getNoOfColumns());
System.out.println("Values : " + databaseRow.getValues().toString());
}

The above client code registers the custom Bean Post Processor to the Bean Factory object by calling the method BeanFactory.addBeanPostProcessor(). It is possible to add any number of Bean Post Processor objects.

<bean id="databaseRow" class="javabeat.net.articles.spring.lifecycle.DatabaseRow">
</bean>

3.5) Initializing Bean

EmployeeBean.java

package javabeat.net.articles.spring.lifecycle;

import org.springframework.beans.factory.InitializingBean;

public class EmployeeBean implements InitializingBean
{
private String name;
private int age;
private double salary; public EmployeeBean()
{
} public String getName()
{
return name;
} public void setName(String name)
{
this.name = name;
} public int getAge()
{
return age;
} public void setAge(int age)
{
this.age = age;
} public double getSalary()
{
return salary;
} public void setSalary(double salary)
{
this.salary = salary;
} @Override
public void afterPropertiesSet() throws Exception
{
if (name == null || age == 0 || salary == 0.0d)
{
throw new Exception("Mandatory field not set.");
}
}
}

The InitializingBean interface may be implemented by Bean class who wish to do some post processing actions when all the properties have been set. For example, the above sample code tries to check whether all the properties are set and if not and an exception is thrown.

static void initializingBeanTest()
{
try
{
Resource resource = new FileSystemResource(
"./src/resources/bean-lifecycle.xml");
BeanFactory xmlBeanFactory = new XmlBeanFactory(resource);
EmployeeBean johnson = (EmployeeBean)xmlBeanFactory.getBean("johnson");
System.out.println("Name: " + johnson.getName());
System.out.println("Age: " + johnson.getAge());
System.out.println("Salary: " + johnson.getSalary());
}
catch (Exception exception)
{
exception.printStackTrace();
}
}

In the configuration file, we have purposely omitted the property 'name' which means that we an instance of the Bean object is created the name variable will be pointing to null, thereby throwing an exception in the afterPropertiesSet() method.

<bean id="johnson" class="javabeat.net.articles.spring.lifecycle.EmployeeBean">
<property name = "age" value = "43" />
<property name = "salary" value = "4834938.32" />
</bean>

3.6) Custom Init Method

CustomInitMethodBean.java

package javabeat.net.articles.spring.lifecycle;

public class CustomInitMethodBean
{
public void customInitMethod()
{
System.out.println("Custom init method called for this bean");
}
}

One of the drawbacks with the InitializingBean interface is that the client code is dependant on Spring specific APIs. If you feel that approach is not fine, then you can define your own initialization method in your Spring class and configure the method in the Xml file.

static void customInitMethodTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
BeanFactory xmlBeanFactory = new XmlBeanFactory(resource);
CustomInitMethodBean bean =
(CustomInitMethodBean)xmlBeanFactory.getBean("customInitMethodBean");
}

For the above Bean class, we have defined a method called customInitMethod() and we have configured the same in the 'init-method' attribute. This means that the methodcustomInitMethod() will be called once all the properties for the Bean is set.

<bean id="customInitMethodBean" class="javabeat.net.articles.spring.lifecycle.CustomInitMethodBean"
init-method = "customInitMethod">
</bean>

3.7) Disposable Bean

ConnectionManager.java

package javabeat.net.articles.spring.lifecycle;

import java.util.ArrayList;
import java.util.List; import org.springframework.beans.factory.DisposableBean; public class ConnectionManager implements DisposableBean
{
private List connections = new ArrayList(); public ConnectionManager()
{
for (int i = 0; i < 5; i++)
{
Connection connection = new Connection();
connection.open();
connections.add(connection);
}
} @Override
public void destroy() throws Exception
{
System.out.println("Closing all connections");
for (Connection connection : connections)
{
connection.close();
}
} class Connection
{
public void open() {}
public void close() {}
}
}

This interface is exactly the reverse of InitializingBean interface. The methoddestroy() in the DisposableBean will be called once the Bean reference is no longer needed by the Application code, or the Bean instance is forced to be removed through some APIs.

static void disposableBeanTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
ConfigurableListableBeanFactory xmlBeanFactory = new XmlBeanFactory(resource);
ConnectionManager connectionManager =
(ConnectionManager)xmlBeanFactory.getBean("myConnectionManager");
xmlBeanFactory.destroySingletons();
}

The default scope for all the Beans is singleton, which means that only one instance is created irrespective of the number of calls made to BeanFactory.getBean("beanName"). In the above client code, we have called the method BeanFactory.destroySingletons()which will forcibly remove the Bean instance managed by the Bean Factory in which case the destroy method will be called.

<bean id="myConnectionManager" class="javabeat.net.articles.spring.lifecycle.ConnectionManager">
</bean>

3.8) Custom Destroy Method

CustomDestroyMethodBean.java

package javabeat.net.articles.spring.lifecycle;

public class CustomDestroyMethodBean
{
public void customDestroyMethod()
{
System.out.println("This method will be called upon bean destruction.");
}
}

If we dont prefer a Spring Bean to depend on Spring specific API for destruction, then all we can do is to define a custom method in the implementation class and make appropriate configuration in the Xml file.

static void customDestroyMethodTest()
{
Resource resource = new FileSystemResource("./src/resources/bean-lifecycle.xml");
ConfigurableListableBeanFactory xmlBeanFactory = new XmlBeanFactory(resource);
CustomDestroyMethodBean bean =
(CustomDestroyMethodBean)xmlBeanFactory.getBean("customDestroyMethodBean");
xmlBeanFactory.destroySingletons();
}

The method customDestroyMethod defined in the above Bean in configured through the means of the attribute 'destroy-method'.

<bean id="customDestroyMethodBean" class="javabeat.net.articles.spring.lifecycle.CustomDestroyMethodBean"
destroy-method = "customDestroyMethod">
</bean>

4) Conclusion

In this article, we have discussed the contract between Spring Beans and the IOC Container. We have also listed down the series of steps that will be occurring at relevant intervals during the entire life cycle of Spring Beans.

附,另一张图片:http://i.stack.imgur.com/MArmL.png

spring bean生命周期管理--转的更多相关文章

  1. 大厂高频面试题Spring Bean生命周期最详解

    Spring作为当前Java最流行.最强大的轻量级框架.Spring Bean的生命周期也是面试高频题,了解Spring Bean周期也能更好地帮助我们解决日常开发中的问题.程序员应该都知道Sprin ...

  2. Spring Bean生命周期,好像人的一生。。

    大家好,我是老三,上节我们手撸了一个简单的IOC容器五分钟,手撸一个Spring容器!,这节我们来看一看Spring中Bean的生命周期,我发现,和人的一生真的很像. 简单说说IoC和Bean IoC ...

  3. spring bean 生命周期和 ? 作用域? spirng bean 相互依赖? jvm oom ? jvm 监控工具? ThreadLocal 原理

    1. spring bean 生命周期 1. 实例化一个bean ,即new 2. 初始化bean 的属性 3. 如果实现接口 BeanNameAware ,调用 setBeanName 4. Bea ...

  4. Spring点滴四:Spring Bean生命周期

    Spring Bean 生命周期示意图: 了解Spring的生命周期非常重要,我们可以利用Spring机制来定制Bean的实例化过程. -------------------------------- ...

  5. Spring Bean 生命周期之destroy——终极信仰

    上一篇文章 Spring Bean 生命周期之我从哪里来 说明了我是谁? 和 我从哪里来? 的两大哲学问题,今天我们要讨论一下终极哲学我要到哪里去? 初始化 Spring Bean 有三种方式: @P ...

  6. 常见问题:Web/Servlet生命周期与Spring Bean生命周期

    Servlet生命周期 init()初始化阶段 Servlet容器加载Servlet(web.xml中有load-on-startup=1;Servlet容器启动后用户首次向Servlet发请求;Se ...

  7. 睡前聊一聊"spring bean 生命周期"

    spring bean 生命周期=实属初销+2个常见接口+3个Aware型接口+2个生命周期接口 实属初销:spring bean生命周期只有四个阶段,即实例化->属性赋值->初始化-&g ...

  8. 【不懂】spring bean生命周期

    完整的生命周期(牢记): 1.spring容器准备 2.实例化bean 3.注入依赖关系 4.初始化bean 5.使用bean 6.销毁bean Bean的完整生命週期可以認為是從容器建立初始化Bea ...

  9. Spring Bean 生命周期2

    在spring中,从BeanFactory或ApplicationContext取得的实例为Singleton,也就是预设为每一个Bean的别名只能维持一个实例,而不是每次都产生一个新的对象使用Sin ...

随机推荐

  1. listview选中没有效果

    listview选中没有效果了,设置了android:listselector也没有效果,最后发现是listview中的item布局设置了背景颜色导致,把item的背景色去掉就OK了 http://b ...

  2. ABP框架详解(二)AbpKernelModule

    AbpKernelModule类是Abp框架自己的Module,它也跟所有其他的Module一样继承自AbpModule,重写PreInitialize,Initialize,PostInitiali ...

  3. LoadRunner参数化取值及连接数据库操作步骤

    很多情况下,参数添加的数据不是十条二十条,也不是一百两百,对于这种大数量的数据我们可以通过数据库将数据导入: 选中要参数化的内容如下图一所示: 方法一,右键---[Replace with a new ...

  4. 将asp.net webapi的运行时版本由4.0升级到4.5.1时遇到的问题及解决

    更新package 更改.net运行时的版本之后,出现了错误提示,说需要改新以下组件: EntityFramework, EntityFramework.zh-Hans, Microsoft.AspN ...

  5. AlwaysOn 部分笔记及文档连接

    本文主要含有一些AlwaysOn 配置方法及连接. 本想展开详细写一下  无奈隔壁在年会排练节目,那歌唱得我只想赶紧回家!!!!!!!!!!!!!!! http://www.cnblogs.com/d ...

  6. 一用钟情的VS插件系列总目录(值得收藏)

    关于插件,大家的印象可能很多,比如开发者经常使用的Chrome浏览器的扩展程序,某个软件的一个扩展程序等等.我们使用插件的目的是为了提高我们的某些方面的工作效率或者让我们的软件源(Chrome浏览器等 ...

  7. 解读jQuery中extend函数

    $.extend.apply( null, [ true, { "a" : 1, "b" : 2 } ] );//console.log(window.a); ...

  8. TypeScript - Interfaces

    简介 关注于数据值的 ‘shape’的类型检查是TypeScript核心设计原则.这种模式有时被称为‘鸭子类型’或者‘结构子类型化’. . 在TypeScript中接口interfaces的责任就是命 ...

  9. 【情人节来一发】网站添加QQ客服功能

    今年的元宵节遇到情人节,挺不自量力的,呵呵,开篇给各位讲个段子,早上一美女同学在空间发说说道:“开工大吉 起床啦,卖元宵,卖玫瑰,卖避孕套啦-有木有一起去发财的小伙伴?Let’s go…”,对于此种长 ...

  10. iOS——Core Animation 知识摘抄(二)

    阴影 主要是shadowOpacity .shadowColor.shadowOffset和shadowRadius四个属性 shadowPath属性 我们已经知道图层阴影并不总是方的,而是从图层内容 ...