标签:
spring bean的初始化和销毁有3种形式:
1.通过注解@PostConstruct 和 @PreDestroy 方法实现初始化和销毁bean之前的操作。
2.通过xml配置init-method="" 和destory-method=""
3.通过实现InitializingBean和 DisposableBean接口
spring bean的初始化和销毁
原文地址:http://my.oschina.net/haoqoo/blog/468844