当实例化一个bean时,可能需要执行一些初始化操作来确保该bean处于可用状态。当不在需要bean的时候,将其从容器中移除时候,我们可能会执行一些清理的工作。
1、spring提供了:InitializingBean和DisposableBean接口
Spring容器以特殊的方式对待实现这两个接口的bean,容许他们进入bean的生命周期。
看下例子:
public class TestSpring implements InitializingBean,DisposableBean {
//初始化
@Override
public void afterPropertiesSet() throws Exception {
System.out.println("afterPropertiesSet运行了");
}
//销毁
@Override
public void destroy() throws Exception {
System.out.println("destroy运行了");
}
}
spring配置:
<bean id="startAndstop" class="cn.com.ztz.spring.test.TestSpring"/>
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
((ClassPathXmlApplicationContext)context).close();
}
输出结果:
afterPropertiesSet运行了
destroy运行了
虽然这个接口能达到我们要的效果,但是会有一个缺点,bean与Spring的API产生了耦合。下面在介绍一个推荐的方法:
Spring为我们提供了方法:
- init-method:在初始化bean的时候要调用的方法
- destroy-method:在bean从容器移除之前要调用的方法
下面来个例子说明:
public class TestSpring {
public void start(){
System.out.println("start被调用了");
}
public void stop(){
System.out.println("stop被调用了");
}
}
Spring 配置
<bean id="startAndstop" class="cn.com.ztz.spring.test.TestSpring"
init-method="start"
destroy-method="stop"/>
输出结果:
start被调用了
stop被调用了
如果在上下文中定义的很多bean都有相同的名字的初始化方法和销毁方法,我们没有必要每一个bean都声明init-method
、destroy-method
属性。幸运的是,可以使用< beans/>元素的default-init-method
、default-destroy-method