首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

Spring bean 经过实现 InitializingBean ,DisposableBean 接口实现初始化方法和销毁前操作

2013-03-19 
Springbean 通过实现 InitializingBean ,DisposableBean 接口实现初始化方法和销毁前操作关于在spring容器

Spring bean 通过实现 InitializingBean ,DisposableBean 接口实现初始化方法和销毁前操作

关于在spring  容器初始化 bean 和销毁前所做的操作定义方式有三种:

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

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

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


1:定义相应类实现InitializingBean ,DisposableBean 接口
I'm  init  method  using implements DisposableBean interface....123三月 16, 2013 5:06:34 下午 org.springframework.context.support.AbstractApplicationContext doCloseINFO: Closing org.springframework.context.support.ClassPathXmlApplicationContext@205756: startup date [Sat Mar 16 17:06:30 CST 2013]; root of context hierarchyI'm  init  method  using implements InitializingBean interface....123


over

热点排行