日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring bean生命周期管理--转

發布時間:2025/4/5 编程问答 19 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring bean生命周期管理--转 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

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

A?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.

  • The Bean Container finds the definition of the Spring Bean in the Configuration file.
  • The Bean Container creates an instance of the Bean using Java Reflection API.
  • If any properties are mentioned, then they are also applied. If the property itself is a Bean, then it is resolved and set.
  • If the Bean class implements the?BeanNameAware?interface, then the?setBeanName()method will be called by passing the name of the Bean.
  • 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.
  • If the Bean class implements the?BeanFactoryAware?interface, then the methodsetBeanFactory()?will be called by passing an instance of?BeanFactory?object.
  • 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.
  • 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.
  • 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.
  • The?postProcessAfterInitialization()?method will be called if there are any Bean Post Processors attached for the Bean Factory object.
  • If the Bean class implements the?DisposableBean?interface, then the methoddestroy()?will be called when the Application no longer needs the bean reference.
  • 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;}@Overridepublic 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;@Overridepublic 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 resources,?publishing 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;@Overridepublic 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?BeanFactory,?ApplicationContext,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 {@Overridepublic 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;}@Overridepublic 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;}@Overridepublic 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);}}@Overridepublic 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

    ?

    轉載于:https://www.cnblogs.com/davidwang456/p/5632832.html

    總結

    以上是生活随笔為你收集整理的spring bean生命周期管理--转的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。