在spring容器对 bean 初始化前和销毁前进行操作

三种方式:

第一种:通过@PostConstruct 和 @PreDestroy 方法 实现初始化和销毁bean之前进行的操作

第二种是:通过 在xml中定义init-method 和  destory-method方法

第三种是: 通过bean实现InitializingBean和 DisposableBean接口

猜你喜欢

转载自zeraw.iteye.com/blog/2388656