作者:一直很哇塞. | 来源:互联网 | 2024-11-13 13:24
Spring bean的生命周期很容易理解。实例化bean时,可能需要执行一些初始化以使其进入可用状态。同样,当不再需要bean并将其从容器中删除时,可能需要进行一些清理。
Spring bean的生命周期很容易理解。实例化bean时,可能需要执行一些初始化以使其进入可用状态。同样,当不再需要bean并将其从容器中删除时,可能需要进行一些清理。
这里将仅讨论两个重要的Bean生命周期回调方法,这些方法在Bean初始化及其销毁时是必需的。
要定义bean的设置和拆卸,只需使用initmethod和destroy-method参数声明 。
- init-method属性指定在实例化后立即在Bean上调用的方法。
- destroymethod指定一种在将bean从容器中删除之前被调用的方法。
初始化回调
org.springframework.beans.factory.InitializingBean接口指定一个方法-
void afterPropertiesSet() throws Exception;
可以简单地实现上述接口,并且可以在afterPropertiesSet()方法内部完成初始化工作,如下所示:
public class ExampleBean implements InitializingBean {
public void afterPropertiesSet() {
// do some initialization work
}
}
对于基于XML的配置元数据,可以使用init-method属性指定具有无效无参数签名的方法的名称。例如-
"exampleBean" class = "examples.ExampleBean" init-method = "init"/>
以下是类定义-
public class ExampleBean {
public void init() {
// do some initialization work
}
}
销毁回调
所述org.springframework.beans.factory.DisposableBean接口指定一个单一的方法-
void destroy() throws Exception;
可以简单地实现上述接口,并且可以在destroy()方法内完成终结工作,如下所示:
public class ExampleBean implements DisposableBean {
public void destroy() {
// do some destruction work
}
}
对于基于XML的配置元数据,可以使用destroy-method属性指定具有无效无参数签名的方法的名称。例如-
"exampleBean" class = "examples.ExampleBean" destroy-method = "destroy"/>
以下是类定义-
public class ExampleBean {
public void destroy() {
// do some destruction work
}
}
如果在非Web应用程序环境中使用Spring的IoC容器,例如,在富客户端桌面环境中,向JVM注册了一个关闭挂钩。这样做可以确保正常关机,并在您的Singleton bean上调用相关的destroy方法,以便释放所有资源。
建议不要使用InitializingBean或DisposableBean回调,因为XML配置在命名方法方面具有很大的灵活性。
例子
让我们拥有一个可以正常运行的Eclipse IDE,并执行以下步骤来创建一个Spring应用程序:
HelloWorld.java文件的内容-
package com.tutorialspoint;
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类上声明的关闭钩子registerShutdownHook()方法。这将确保正常关机并调用相关的destroy方法。
package com.tutorialspoint;
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();
}
}
以下是初始化和销毁方法所需的配置文件Beans.xml-
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.tutorialspoint.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。相反,该框架提供了灵活性,可以使用元素上的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 = "...">
bean>
beans>
本文使用 文章同步助手 同步