spring中Bean的初始化和销毁方法
Posted 杨大德
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring中Bean的初始化和销毁方法相关的知识,希望对你有一定的参考价值。
1、第一种方式,@Bean指定initMethod和destoryMethod
@Bean(name={"person"},initMethod = "init",destroyMethod = "destroy")
public Person person(){
return new Person();
}
2、第二种方式Bean 实现接口InitializingBean和DisposableBean
public class Car implements InitializingBean, DisposableBean
3、第三种方式@PostConstruct@PreDestroy
4、第四种方式 BeanPostProcessor :bean的后置处理器 -- 为所有的bean
postProcessBeforeInitialization:已经创建好实例,任何初始化调用之前:如initMethod
postProcessAfterInitialization:在初始化之后工作
以上是关于spring中Bean的初始化和销毁方法的主要内容,如果未能解决你的问题,请参考以下文章