首页 > 代码库 > Spring中Bean的生命周期

Spring中Bean的生命周期

       Spring 容器中的 Bean 是有生命周期的,Spring 允许在 Bean 在初始化完成后以及 Bean 销毁前执行特定的操作,常用的设定方式有以下三种:

     (1)通过 <bean> 元素的 init-method/destroy-method属性指定初始化之后 /销毁之前调用的操作方法;

  •      (2)通过实现 InitializingBean/DisposableBean 接口来定制初始化之后/销毁之前的操作方法;

  •      (3)在指定方法上加上@PostConstruct 或@PreDestroy注解来制定该方法是在初始化之后还是销毁之前调用。

  •        Bean在实例化的过程中的优先级(针对以上三种方式):

  •           Constructor(构造器) > @PostConstruct > InitializingBean > init-method


本文出自 “Apple” 博客,请务必保留此出处http://59465168.blog.51cto.com/5268021/1928280

Spring中Bean的生命周期