Spring Bean 生命周期
Spring bean 的生命周期很容易理解。 实例化 bean 时,可能需要执行一些初始化以使其进入可用状态。 同样,当不再需要 bean 并将其从容器中取出时,可能需要进行一些清理。
虽然有一些在 bean 实例化和销毁之间发生的活动,但本章将只讨论 bean 初始化和销毁时需要的两个重要的 bean 生命周期回调方法。
要定义 bean 的设置和卸载,我们只需使用 init-method 和/或 destroy-method 参数声明 <bean>。 init-method 属性指定了在实例化时立即在 bean 上调用的方法。 类似地,destroy-method 指定了一个在从容器中删除 bean 之前调用的方法。
初始化回调方法
org.springframework.beans.factory.InitializingBean 接口指定单个方法
void afterPropertiesSet() throws Exception;
因此,我们可以简单地实现上述接口,并且可以在 afterPropertiesSet() 方法中完成初始化工作,如下所示
public class ExampleBean implements InitializingBean {
public void afterPropertiesSet() {
// 初始化工作
}
}
对于基于 XML 的配置元数据,我们可以使用 init-method 属性来指定具有无效无参数签名的方法的名称。 例如
<bean id = "exampleBean" class = "examples.ExampleBean" init-method = "init"/>
以下是类定义
public class ExampleBean {
public void init() {
// 初始化工作
}
}
销毁回调方法
org.springframework.beans.factory.DisposableBean 接口指定单个方法
void destroy() throws Exception;
因此,我们可以简单地实现上述接口,并且可以在 destroy() 方法中完成最终工作,如下所示
public class ExampleBean implements DisposableBean {
public void destroy() {
// 销毁工作
}
}
对于基于 XML 的配置元数据,可以使用 destroy-method 属性指定具有无效无参数签名的方法的名称。 例如
<bean id = "exampleBean" class = "examples.ExampleBean" destroy-method = "destroy"/>
以下是类定义
public class ExampleBean {
public void destroy() {
// 销毁工作
}
}
如果你在非 web 应用环境中使用 Spring 的 IoC 容器; 例如,在客户端桌面环境中,我们向 JVM 注册了一个关闭钩子。 这样做可以确保正常关闭并在单例 bean 上调用相关的销毁方法,以便释放所有资源。
建议不要使用 InitializingBean 或 DisposableBean 回调,因为 XML 配置在命名我们的方法方面提供了很大的灵活性。
示例
下面我们看一个示例,还是使用我们最初的 FirstSpring 项目
下面是HelloWorld.java 文件的代码
HelloWorld.java
package com.jiyik; public class HelloWorld { private String message; public void setMessage(String message){ this.message = message; } public void getMessage(){ System.out.println("Your Message : " + message); } public void init(){ System.out.println("Bean is going through init."); } public void destroy() { System.out.println("Bean will destroy now."); } }
以下是 MainApp.java 文件的内容。 在这里,需要注册一个在 AbstractApplicationContext 类上声明的shutdown hook registerShutdownHook()
方法。 这将确保正常关闭并调用相关的销毁方法。
MainApp.java
package com.jiyik; import org.springframework.context.support.AbstractApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MainApp { public static void main(String[] args) { AbstractApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml"); HelloWorld obj = (HelloWorld) context.getBean("helloWorld"); obj.getMessage(); context.registerShutdownHook(); } }
以下是init和destroy方法所需的配置文件Beans.xml
Beans.xml
<?xml version = "1.0" encoding = "UTF-8"?> <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-3.0.xsd"> <bean id = "helloWorld" class = "com.jiyik.HelloWorld" init-method = "init" destroy-method = "destroy"> <property name = "message" value = "Hello World!"/> </bean> </beans>
创建完源代码和 bean 配置文件后,让我们运行应用程序。 如果应用程序一切正常,它将打印以下消息
Bean is going through init.
Your Message : Hello World!
Bean will destroy now.
默认初始化和销毁方法
如果有太多具有相同名称的初始化和/或销毁方法的 bean,则无需在每个单独的 bean 上声明 init-method 和 destroy-method。 相反,框架支持使用 <beans> 元素上的 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-3.0.xsd"
default-init-method = "init"
default-destroy-method = "destroy">
<bean id = "..." class = "...">
<!-- collaborators and configuration for this bean go here -->
</bean>
</beans>