首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

一分钟掌握Spring 中bean 的生命周期

2012-09-25 
一分钟掌握Spring 中bean 的生命周期!???Spring?中bean?的生命周期短暂吗????????在spring中,从BeanFactor

一分钟掌握Spring 中bean 的生命周期!
?


??Spring?中bean?的生命周期短暂吗?

?

??????在spring中,从BeanFactory或ApplicationContext取得的实例为Singleton,也就是预设为每一个Bean的别名只能维持一个实例,而不是每次都产生一个新的对象使用Singleton模式产生单一实例,对单线程的程序说并不会有什么问题,但对于多线程的程序,就必须注意安全(Thread-safe)的议题,防止多个线程
同时存取共享资源所引发的数据不同步问题。
然而在spring中?可以设定每次从BeanFactory或ApplicationContext指定别名并取得Bean时都产生一个新的实例:例如:
<bean?id="studentService"?style="text-align: left; margin-top: 0pt; margin-bottom: 0pt; background: #ffffff;">一个Bean从创建到销毁,如果是用BeanFactory来生成,管理Bean的话,会经历几个执行阶段(如图1.1):

?????一分钟掌握Spring 中bean 的生命周期
????1:Bean的建立:

??????容器寻找Bean的定义信息并将其实例化。??

?? 2:属性注入:
??????????使用依赖注入,Spring按照Bean定义信息配置Bean所有属性
????3:BeanNameAware的setBeanName():
??????????如果Bean类有实现org.springframework.beans.BeanNameAware接口,工厂调用Bean的setBeanName()方法传递Bean的ID。

?? 4:BeanFactoryAware的setBeanFactory():
??????????如果Bean类有实现org.springframework.beans.factory.BeanFactoryAware接口,工厂调用setBeanFactory()方法传入工厂自身。
????5:BeanPostProcessors的ProcessBeforeInitialization()
??????????如果有org.springframework.beans.factory.config.BeanPostProcessors和Bean关联,那么其postProcessBeforeInitialization()方法将被将被调用。
????6:initializingBean的afterPropertiesSet():
??????????如果Bean类已实现org.springframework.beans.factory.InitializingBean接口,则执行他的afterProPertiesSet()方法
????7:Bean定义文件中定义init-method:
??????????可以在Bean定义文件中使用"init-method"属性设定方法名称例如:
??????????<bean?id="studentService"?calss="cn.csdn.service.StudentService"?init-method="init">
??????????如果有以上设置的话,则执行到这个阶段,就会执行initBean()方法
????8:BeanPostProcessors的ProcessaAfterInitialization()
??????????如果有任何的BeanPostProcessors实例与Bean实例关联,则执行BeanPostProcessors实例的ProcessaAfterInitialization()方法

此时,Bean已经可以被应用系统使用,并且将保留在BeanFactory中知道它不在被使用。有两种方法可以将其从BeanFactory中删除掉(如图1.2):

??一分钟掌握Spring 中bean 的生命周期
????1:DisposableBean的destroy()
??????????在容器关闭时,如果Bean类有实现org.springframework.beans.factory.DisposableBean接口,则执行他的destroy()方法
????2:Bean定义文件中定义destroy-method
??????????在容器关闭时,可以在Bean定义文件中使用"destroy-method"属性设定方法名称,例如:
??<bean?id="studentService"?calss="cn.csdn.service.StudentService"destroy-method="destroy">
??????????如果有以上设定的话,则进行至这个阶段时,就会执行destroy()方法,如果是使用ApplicationContext来生成并管理Bean的话则稍有不同,使用ApplicationContext来生成及管理Bean实例的话,在执行BeanFactoryAware的setBeanFactory()阶段后,若Bean类上有实现org.springframework.context.ApplicationContextAware接口,则执行其setApplicationContext()方法,接着才执行BeanPostProcessors的ProcessBeforeInitialization()及之后的流程

?

<!--EndFragment-->

热点排行