老外总结的关于Spring Bean Life Cycle 的文档

老外的blog:http://howtodoinjava.com/


Spring Bean Life Cycle Tutorial


Spring bean factory is responsible for managing the life cycle of beans created through spring container. The life cycle of beans consist of call back methods which can be categorized broadly in two groups:

  • Post initialization call back methods
  • Pre destruction call back methods

Spring framework provides following 4 ways for controlling life cycle events of bean:

  1. InitializingBean and DisposableBean callback interfaces
  2. Other Aware interfaces for specific behavior
  3. custom init() and destroy() methods in bean configuration file
  4. @PostConstruct and @PreDestroy annotations

Spring Bean Life Cycle


Lets learn about them one by one.

InitializingBean and DisposableBean callback interfaces

The org.springframework.beans.factory.InitializingBean interface allows a bean to perform initialization work after all necessary properties on the bean have been set by the container. The InitializingBean interface specifies a single method:

void afterPropertiesSet() throws Exception;

This is not a preferrable way to initialize the bean because it tightly couple your bean class with spring container. A better approach is to use “init-method” attribute in bean definition in applicationContext.xml file.

Similarly, implementing the org.springframework.beans.factory.DisposableBean interface allows a bean to get a callback when the container containing it is destroyed. The DisposableBean interface specifies a single method:

void destroy() throws Exception;

A sample bean implementing above interfaces would look like this:

package com.howtodoinjava.task;
 
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
 
public class DemoBeanTypeOne implements InitializingBean, DisposableBean
{
     //Other bean attributes and methods
     
     @Override
     public void afterPropertiesSet() throws Exception
     {
         //Bean initialization code
     }
     
     @Override
     public void destroy() throws Exception
     {
         //Bean destruction code
     }
}

Other Aware interfaces for specific behavior

Spring offers a range of Aware interfaces that allow beans to indicate to the container that they require a certain infrastructure dependency. Each interface will require you to implement a method to inject the dependency in bean.

These interfaces can be summarized as :

AWARE INTERFACEMETHOD TO OVERRIDEPURPOSE
ApplicationContextAwarevoid setApplicationContext(ApplicationContext applicationContext) throws BeansException;Interface to be implemented by any object that wishes to be notified of the ApplicationContext that it runs in.
ApplicationEventPublisherAwarevoid setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher);Set the ApplicationEventPublisher that this object runs in.
BeanClassLoaderAwarevoid setBeanClassLoader(ClassLoader classLoader);Callback that supplies the bean class loader to a bean instance.
BeanFactoryAwarevoid setBeanFactory(BeanFactory beanFactory) throws BeansException;Callback that supplies the owning factory to a bean instance.
BeanNameAwarevoid setBeanName(String name);Set the name of the bean in the bean factory that created this bean.
BootstrapContextAwarevoid setBootstrapContext(BootstrapContext bootstrapContext);Set the BootstrapContext that this object runs in.
LoadTimeWeaverAwarevoid setLoadTimeWeaver(LoadTimeWeaver loadTimeWeaver);Set the LoadTimeWeaver of this object’s containing ApplicationContext.
MessageSourceAwarevoid setMessageSource(MessageSource messageSource);Set the MessageSource that this object runs in.
NotificationPublisherAwarevoid setNotificationPublisher(NotificationPublisher notificationPublisher);Set the NotificationPublisher instance for the current managed resource instance.
PortletConfigAwarevoid setPortletConfig(PortletConfig portletConfig);Set the PortletConfig this object runs in.
PortletContextAwarevoid setPortletContext(PortletContext portletContext);Set the PortletContext that this object runs in.
ResourceLoaderAwarevoid setResourceLoader(ResourceLoader resourceLoader);Set the ResourceLoader that this object runs in.
ServletConfigAwarevoid setServletConfig(ServletConfig servletConfig);Set the ServletConfig that this object runs in.
ServletContextAwarevoid setServletContext(ServletContext servletContext);Set the ServletContext that this object runs in.

A sample implementation will look like this:

package com.howtodoinjava.task;
 
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanClassLoaderAware;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.BeanNameAware;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.context.MessageSource;
import org.springframework.context.MessageSourceAware;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.context.weaving.LoadTimeWeaverAware;
import org.springframework.core.io.ResourceLoader;
import org.springframework.instrument.classloading.LoadTimeWeaver;
import org.springframework.jmx.export.notification.NotificationPublisher;
import org.springframework.jmx.export.notification.NotificationPublisherAware;
 
public class BemoBeanTypeTwo implements ApplicationContextAware,
         ApplicationEventPublisherAware, BeanClassLoaderAware, BeanFactoryAware,
         BeanNameAware, LoadTimeWeaverAware, MessageSourceAware,
         NotificationPublisherAware, ResourceLoaderAware
{
     @Override
     public void setResourceLoader(ResourceLoader arg0) {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setNotificationPublisher(NotificationPublisher arg0) {
         // TODO Auto-generated method stub
 
     }
 
     @Override
     public void setMessageSource(MessageSource arg0) {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setLoadTimeWeaver(LoadTimeWeaver arg0) {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setBeanName(String arg0) {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setBeanFactory(BeanFactory arg0) throws BeansException {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setBeanClassLoader(ClassLoader arg0) {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setApplicationEventPublisher(ApplicationEventPublisher arg0) {
         // TODO Auto-generated method stub
     }
 
     @Override
     public void setApplicationContext(ApplicationContext arg0)
             throws BeansException {
         // TODO Auto-generated method stub
     }
}

Custom init() and destroy() methods in bean configuration file

The default init and destroy methods in bean configuration file can be defined in two ways:

  • Bean local definition applicable to a single bean
  • Global definition applicable to all beans defined in beans context

Local definition is given as below.

< beans >
     < bean id = "demoBean" class = "com.howtodoinjava.task.DemoBean" init-method = "customInit" destroy-method = "customDestroy" ></ bean >
</ beans >

Where as global definition is given as below. These methods will be invoked for all bean definitions given under tag. They are useful when you have a pattern of defining common method names such as init() and destroy() for all your beans consistently. This feature helps you in not mentioning the init and destroy method names for all beans independently.

< beans default-init-method = "customInit" default-destroy-method = "customDestroy" >       
         < bean id = "demoBean" class = "com.howtodoinjava.task.DemoBean" ></ bean >
</ beans >

A sample implementation for this type of life cycle will be:

package com.howtodoinjava.task;
 
public class BemoBeanTypeThree
{
     public void customInit()
     {
         System.out.println( "Method customInit() invoked..." );
     }
 
     public void customDestroy()
     {
         System.out.println( "Method customDestroy() invoked..." );
     }
}

@PostConstruct and @PreDestroy annotations

Spring 2.5 onwards, you can use annotations also for specifying life cycle methods using @PostConstruct and @PreDestroy annotations.

  • @PostConstruct annotated method will be invoked after the bean has been constructed using default constructor and just before it’s instance is returned to requesting object.
  • @PreDestroy annotated method is called just before the bean is about be destroyed inside bean container.

A sample implemetation will look like this:

package com.howtodoinjava.task;
 
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
 
public class BemoBeanTypeFour
{
     @PostConstruct
     public void customInit()
     {
         System.out.println( "Method customInit() invoked..." );
     }
     
     @PreDestroy
     public void customDestroy()
     {
         System.out.println( "Method customDestroy() invoked..." );
     }
}

So this is all about life cycle management of beans inside spring container. I hope that it has added some more knowledge in your kitty.

Happy Learning !!




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值