欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Spring中bean生命周期回调方法

程序员文章站 2023-01-07 13:59:31
生命周期回调方法 对于spring bean来讲,我们默认可以指定两个生命周期回调方法。一个是在applicationcontext将bean初始化,包括注入对应的依赖后...

生命周期回调方法

对于spring bean来讲,我们默认可以指定两个生命周期回调方法。一个是在applicationcontext将bean初始化,包括注入对应的依赖后的回调方法;另一个是在applicationcontext准备销毁之前的回调方法。要实现这种回调主要有三种方式:实现特定的接口、在xml配置文件中指定回调方法和使用jsr-250标准的注解。

1 实现特定接口

针对bean初始化后的回调和applicationcontext销毁前的回调,spring分别为我们了提供了initializingbean和disposablebean接口供用户实现,这样spring在需要进行回调时就会调用对应接口提供的回调方法。

1.1 initializingbean

initializingbean是用来定义applicationcontext在完全初始化一个bean以后需要需要回调的方法的,其中只定义了一个afterpropertiesset()方法。如其名称所描述的那样,该方法将在applicationcontext将一个bean完全初始化,包括将对应的依赖项都注入以后才会被调用。initializingbean的完全定义如下。

public interface initializingbean {

 void afterpropertiesset() throws exception;

}

由于initializingbean的afterpropertiesset()方法会在依赖项都进行注入以后再回调,所以该方法通常会用来检查必要的依赖注入,以使我们能够在bean被初始化时就发现其中的错误,而不是在很长时间使用以后才发现。如果你去看spring的源码,你就会发现源码中有很多initializingbean的使用,而且基本都是用来检查必要的依赖项是否为空的。

public class hello implements initializingbean {
 
 private world world;
 
 /**
 * 该方法将在当前bean被完全初始化后被调用
 */
 public void afterpropertiesset() throws exception {
 assert.notnull(world, "world should not be null.");
 }

 public void setworld(world world) {
 this.world = world;
 }
 
}

9.1.2 disposablebean

disposablebean是用来定义在applicationcontext销毁之前需要回调的方法的。disposablebean接口中只定义了一个destroy()方法,在applicationcontext被销毁前,spring将依次调用bean容器中实现了disposablebean接口的destroy()方法。所以,我们可以通过实现该接口的destroy()方法来达到在applicationcontext销毁前释放某些特定资源的目的。

public interface disposablebean {

 void destroy() throws exception;

}

在spring的源码中,也有很多实现了disposablebean接口的类,如我们熟悉的applicationcontext实现类、singleconnectiondatasource等。

2 在xml中配置回调方法

在xml配置文件中通过bean元素定义一个bean时,我们可以通过bean元素的init-method属性和destroy-method属性来指定当前bean在初始化以后和applicationcontext销毁前的回调方法。需要注意的是所指定的回调方法必须是没有参数的。

通过init-method属性来指定初始化方法时所对应的方法必须是该bean中所拥有的方法,所以首先我们需要在对应的bean中定义对应的初始化方法,这里假设我们需要在bean中定义一个init()方法作为该bean的初始化方法,那么我们可以对我们的bean进行类似如下定义。

public class hello {
 
 private world world;
 
 /**
 * 该方法将被用来作为初始化方法,在当前bean被完全初始化后被调用
 */
 public void init() {
 assert.notnull(world, "world should not be null.");
 }

 public void setworld(world world) {
 this.world = world;
 }
 
}

接下来就是在xml配置文件中定义该bean时通过init-method属性定义对应的初始化方法为init()方法,init-method属性的属性值就对应初始化方法的名称,所以我们的bean应该是如下定义。

 <bean name="world" class="com.app.world"/>
 <!-- 通过init-method属性指定初始化方法名称 -->
 <bean id="hello" class="com.app.hello" init-method="init">
 <property name="world" ref="world"/>
 </bean>

init-method和destroy-method的用法和配置等基本上都是一样的,所以对于使用destroy-method来指定applicationcontext销毁前的回调方法的用法就不再赘述了。

如果我们的初始化方法或销毁方法的名称大都是一样的,在通过init-method和destroy-method进行指定的时候我们就没有必要一个个bean都去指定了,spring允许我们在最*的beans元素上指定默认的初始化后回调方法和销毁前的回调方法名称,这样对于没有指定init-method或destroy-method的bean将默认将其中default-init-method或default-destroy-method属性值对应名称的方法(如果存在的话)视为初始化后的回调方法或销毁前的回调方法。这是通过default-init-method和default-destroy-method属性来定义的。

<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xsi:schemalocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd"
  default-init-method="init" default-destroy-method="destroy">
 
</beans>

以上表示定义默认的初始化后回调方法名称为init,默认的销毁前回调方法名称为destroy。

当定义了default-init-method或default-destroy-method以后,如果我们的某个bean对应的初始化后回调方法名称或销毁前的回调方法名称与默认定义的不一样,则我们可以在对应的bean上通过init-method或destroy-method指定该bean自身的回调方法名称,即bean上定义的回调方法名称将会比默认定义拥有更高的优先级。

3 使用jsr-250标准的注解

关于bean的生命周期回调方法,spring也会jsr-250标准注解做了支持,即在bean完全初始化后将回调使用@postconstruct标注的方法,在销毁applicationcontext前将回调使用@predestroy标注的方法。
针对之前的示例,如果我们现在把定义的bean定义成如下这样,即没有在bean上通过init-method和destroy-method指定初始化方法和销毁方法。

 <bean name="world" class="com.app.world"/>
 <bean id="hello" class="com.app.hello">
 <property name="world" ref="world"/>
 </bean>

当然,这里也不考虑全局性的init-method和destroy-method方法,如果我们希望在id为“hello”的bean被初始化后回调其中的init()方法,在销毁前回调其中的destroy()方法,我们就可以通过@postconstruct和@predestroy进行如下定义。

public class hello {
 
 private world world;
 
 /**
 * 该方法将被用来作为初始化方法,在当前bean被完全初始化后被调用
 */
 @postconstruct
 public void init() {
 assert.notnull(world, "world should not be null.");
 }
 
 @predestroy
 public void destroy() {
 system.out.println("---------destroy-----------");
 }

 public void setworld(world world) {
 this.world = world;
 }
 
}

使用jsr-250标准指定初始化后的回调方法以及销毁前的回调方法时,如果我们希望将多个方法都作为对应的回调方法进行回调,则可以在多个方法上同时使用对应的注解进行标注,spring将依次执行对应的方法。

public class hello {
 
 private world world;

 @postconstruct
 public void init() {
 system.out.println("-----------init-------------");
 }
 
 /**
 * 该方法将被用来作为初始化方法,在当前bean被完全初始化后被调用
 */
 @postconstruct
 public void init2() {
 assert.notnull(world, "world should not be null.");
 }
 
 @predestroy
 public void destroy() {
 system.out.println("------------destroy----------------");
 }
 
 @predestroy
 public void destroy2() {
 system.out.println("---------destroy2-----------");
 }

 public void setworld(world world) {
 this.world = world;
 }
 
}

4 混合使用三种方式

spring允许我们混合使用上述介绍的三种方式来指定对应的回调方法。当对于同一个bean使用三种方式指定了同一个方法作为初始化后的回调方法或销毁前的回调方法,则对应的回调方法只会被执行一次。然而,当对于同一个bean使用两种或三种方式指定的回调方法不是同一个方法时,spring将依次执行使用不同的方式指定的回调方法。对于初始化后的回调方法而言,具体规则如下:

  1. 使用@postconstruct标注的方法。
  2. 实现initializingbean接口后的回调方法afterpropertiesset()方法。
  3. 通过init-method或default-init-method指定的方法。

对于销毁前的回调方法而言,其规则是一样的:

  1. 使用@predestroy标注的方法。
  2. 实现disposablebean接口后的回调方法destroy()方法。
  3. 通过destroy-method或default-destroy-method指定的方法。

(注:本文是基于spring4.1.0所写)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。