Spring管理的bean的生命周期1

 lazy-init,init-method,destroy-method,depends-on的说明(这4个是Spring 1就有的)

  1. lazy-init是否延迟初始化
  2. init-method指定初始化方法
  3. destroy-method指定销毁方法
  4. depends-on指定依赖的bean(指定bean的初始化顺序)

 

<bean id="bean11" class="test.impl.Bean11" lazy-init="true" init-method="init" destroy-method="destroy" depends-on="bean1"/>
<bean id="bean12" class="test.impl.Bean12" lazy-init="false" init-method="init" destroy-method="destroy" depends-on="bean2"/>

<bean id="bean1" class="test.impl.Bean1" init-method="init" destroy-method="destroy" lazy-init="true"/>
<bean id="bean2" class="test.impl.Bean2" init-method="init" destroy-method="destroy" />

 

4个bean的生命周期:

 

p.s. 

  1. 当ac是AbstractApplicationContext的子类时才能调用close方法。
  2. ac.getBean("bean11")和ac.getBean("bean12")是指第一次调用时。为什么是“第一次”,是因为4个bean都是singleton的,所以之后再调用时是不会初始化的。

 

说明:

  •   一个bean的生命周期是constructor->init->destroy
  •   lazy-init决定了bean的初始化时机  (bean1和bean11在被调用时,bean2和bean12在ApplicationContext初始化时)
  •   depends-on决定了beans的初始化顺序(bean11在bean1初始化后,bean22在bean2初始化后)和销毁顺序(bean11在bean1销毁前,bean22在bean2销毁前)

 

你可能感兴趣的:(spring,bean)