Spring bean的作用域和生命周期

Posted 码农翻身

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring bean的作用域和生命周期相关的知识,希望对你有一定的参考价值。

bean的作用域

1.singleton,prototype, web环境下:request,session,gloab session

2.通过scope="" 来进行配置

3.对于singleton  spring容器只会创建一个共享实例,prototype则会创建不同的实例

 

bean的生命周期(bean自身的方法,bean级生命周期接口方法,容器级生命周期接口方法)

分为BeanFactory的生命周期和ApplicationContext的生命周期

1、对于BeanFactory

   1、当通过getBean调用某一个bean的时候,首先看容器是否注册(不是bean实现接口,属于容器级生命周期方法)了InstantiationAwareBeanPostProcessor接口,如果注册了,将会调用postProcessBeforeInstantiation()方法。

   2、然后实例化bean

   3、调用InstantiationAwareBeanPostProcessor接口的postProcessAfterInstantiation()方法

   4、设置属性,调用setter()

   5、调用BeanNameAware的setBeanName()方法

   6、调用BeanFactoryAware中的setBeanFactory()方法

   7、调用InstantiationAwareBeanPostProcessor接口的postProcessBeforeInitialization()方法

   8、 如果容器注册了BeanPostProcessor接口,调用该接口的postProcessBeforeInitialization()方法

   9、调用InitializingBean接口的afterPropertiesSet()方法

   10、调用init-method属性配置的方法

   11、调用InstantiationAwareBeanPostProcessor接口的postProcessAfterInitialization()方法

   12、调用BeanPostProcessor接口的postProcessAfterInitialization()方法

   13、如果bean是单例的则把bean实例存入缓冲池由Spring容器继续关系bean的生命周期,否则交由该bean的调用则管理

   14、调用DisposableBean接口的方法

   15、通过destory-method属性配置的方法

要往ioc容器手动添加BeanPostProcessor的实现类  (ConfigurableBeanFactory)bf.addBeanPostProcessor(new MyBeanPostProcessor());

ApplicationContext中bean的生命周期和BeanFactoty的基本相同,在BeanFactoryAware接口后增加了一个 ApplicationContextAware接口的setApplicationContext()方法。

以上是关于Spring bean的作用域和生命周期的主要内容,如果未能解决你的问题,请参考以下文章

Spring(Bean 作用域和生命周期)

spring bean的作用域和生命周期

Bean的作用域和生命周期

Bean的作用域和生命周期

Bean的作用域和生命周期

[Spring5]IOC容器_Bean管理_bean的作用域和bean的生命周期