Spring的生命周期.
转自:http://mislay.iteye.com/blog/364698
1. 容器启动,实例化所有实现了BeanFactoyPostProcessor接口的类。他会在任何普通Bean实例化之前加载.
2. 实例化剩下的Bean,对这些Bean进行依赖注入。
3. 如果Bean有实现BeanNameAware的接口那么对这些Bean进行调用
4. 如果Bean有实现BeanFactoryAware接口的那么对这些Bean进行调用
5. 如果Bean有实现ApplicationContextAware接口的那么对这些Bean进行调用
6. 如果配置有实现BeanPostProcessor的Bean,那么调用它的postProcessBeforeInitialization方法
7. 如果Bean有实现InitializingBean接口那么对这些Bean进行调用
8. 如果Bean配置有init属性,那么调用它属性中设置的方法
9. 如果配置有实现BeanPostProcessor的Bean,那么调用它的postProcessAfterInitialization方法
10. Bean正常是使用
11. 调用DisposableBean接口的destory方法
12. 调用Bean定义的destory方法
如果从大体上区分值分只为四个阶段
1. BeanFactoyPostProcessor实例化
2. Bean实例化,然后通过某些BeanFactoyPostProcessor来进行依赖注入
3. BeanPostProcessor的调用.Spring内置的BeanPostProcessor负责调用Bean实现的接口: BeanNameAware, BeanFactoryAware, ApplicationContextAware等等,等这些内置的BeanPostProcessor调用完后才会调用自己配置的BeanPostProcessor
4. Bean销毁阶段
以上是自己总结的,没研究过源码,恐有误…作参考用
以下附上验证的代码:
- package mislay;
- import org.springframework.beans.BeansException;
- import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
- import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
- public class BeanFactoryPostProcessorTest implements BeanFactoryPostProcessor {
- @Override
- public void postProcessBeanFactory(
- ConfigurableListableBeanFactory beanFactory) throws BeansException {
- System.out.println("--------> begin BeanFactoryPostProcessorTest");
- String[] names = beanFactory.getBeanDefinitionNames();
- for (String name : names) {
- System.out.println("definition bean name:" + name);
- }
- System.out.println("<--------- end BeanFactoryPostProcessorTest");
- }
- }
- package mislay;
- import org.springframework.beans.BeansException;
- import org.springframework.beans.factory.config.BeanPostProcessor;
- public class BeanPostProcessorTest implements BeanPostProcessor {
- @Override
- public Object postProcessAfterInitialization(Object bean, String beanName)
- throws BeansException {
- System.out.println("call BeanPostProcessor interface postProcessAfterInitialization method; :" + beanName);
- return bean;
- }
- @Override
- public Object postProcessBeforeInitialization(Object bean, String beanName)
- throws BeansException {
- System.out.println("call BeanPostProcessor interface postProcessBeforeInitialization method ::" + beanName);
- if(bean instanceof BeanTest) {
- System.out.println("bean instanceof BeanTest");
- }
- return bean;
- }
- }
- package mislay;
- import org.springframework.beans.BeansException;
- import org.springframework.beans.factory.BeanFactory;
- import org.springframework.beans.factory.BeanFactoryAware;
- import org.springframework.beans.factory.BeanNameAware;
- import org.springframework.beans.factory.DisposableBean;
- import org.springframework.beans.factory.InitializingBean;
- import org.springframework.beans.factory.config.BeanPostProcessor;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.ApplicationContextAware;
- public class BeanTest implements InitializingBean, DisposableBean,BeanNameAware,BeanFactoryAware,ApplicationContextAware {
- @Override
- public void afterPropertiesSet() throws Exception {
- System.out.println("call InitializingBean interface");
- }
- @Override
- public void destroy() throws Exception {
- // TODO Auto-generated method stub
- System.out.println("call DisposableBean interface");
- }
- public void _init() {
- System.out.println("call bean init method");
- }
- public void _destory() {
- System.out.println("call bean destory method");
- }
- public void setSomething(Object something) {
- System.out.println("DI call setSomething method");
- }
- public BeanTest() {
- System.out.println("BeanTest create");
- }
- @Override
- public void setBeanName(String name) {
- // TODO Auto-generated method stub
- System.out.println("call BeanNameAware interface name is:" + name);
- }
- @Override
- public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
- // TODO Auto-generated method stub
- System.out.println("call BeanFactoryAware interface");
- }
- @Override
- public void setApplicationContext(ApplicationContext applicationContext)
- throws BeansException {
- // TODO Auto-generated method stub
- System.out.println("call ApplicationContextAware interface");
- }
- }
- package mislay;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.AbstractApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- public class Test {
- public static void main(String[] args) {
- ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
- ((AbstractApplicationContext) context).registerShutdownHook();
- }
- }
- //下面是输出的内容
- //这一段可以看出首先实例化化的BeanFactoryPostProcessor
- --------> begin BeanFactoryPostProcessorTest
- definition bean name:mislay.BeanFactoryPostProcessorTest
- definition bean name:mislay.BeanPostProcessorTest
- definition bean name:beanTest
- <--------- end BeanFactoryPostProcessorTest
- //这一段是Bean的创建以及依赖注入
- BeanTest create
- DI call setSomething method
- //这一段就是内置的BeanPostProcessor调用
- call BeanNameAware interface name is:beanTest
- call BeanFactoryAware interface
- call ApplicationContextAware interface
- //这里开始调用自己BeanPostProcessor
- call BeanPostProcessor interface postProcessBeforeInitialization method ::beanTest
- bean instanceof BeanTest
- //穿插着对InitializingBean接口和定义的init方法的调用
- call InitializingBean interface
- call bean init method
- call BeanPostProcessor interface postProcessAfterInitialization method; :beanTest
- //上面就结束了对配置的BeanPostProcessor的调用
- //最后销毁
- call DisposableBean interface
- call bean destory method
相关推荐
spring的创建详解图片,仅供参考
Spring生命周期.vsdx
在Spring框架中,Bean的生命周期是指从创建到销毁的整个过程。这个过程包含了初始化、正常使用以及最终的销毁几个阶段。了解并掌握Spring Bean的生命周期对于优化应用性能和资源管理至关重要。接下来,我们将深入...
Spring Bean的生命周期是Spring框架中的核心概念,它涵盖了Bean从创建到销毁的全过程。了解这一过程对于优化应用程序的性能和管理资源至关重要。在Spring中,Bean的生命周期主要分为以下几个阶段: 1. **初始化阶段...
这一节可能包含了对Spring生命周期相关面试题的解析,帮助读者更好地理解和准备面试。 15. **结束语** 总结全文,强调Spring应用上下文生命周期的重要性以及理解其工作原理对于开发和维护Spring应用的意义。 ...
标题中的"spring-lifecycle"暗示了这个项目专注于探索Spring框架中bean的生命周期管理。让我们深入了解一下Spring框架的生命周期及其相关的知识点。 在Spring中,bean的生命周期是指从创建到销毁的整个过程,它包括...
在Spring框架中,Bean的生命周期管理是其核心特性之一,它允许开发者控制Bean从创建到销毁的整个过程。本资源提供了在Spring 4.2环境下关于Bean生命周期的测试代码,帮助我们深入理解这一关键概念。 首先,让我们...
其中,Spring Bean生命周期的管理是Spring框架的核心功能之一,它涉及Spring容器如何创建、配置以及销毁Bean的整个过程。理解Spring Bean的生命周期对于开发高效和可维护的Java应用至关重要。 Spring Bean生命周期...
Spring中Bean的生命周期和作用域及实现方式 Spring是一个非常流行的Java应用程序框架,它提供了一个灵活的机制来管理Bean的生命周期和作用域。Bean的生命周期和作用域是Spring框架中两个非常重要的概念,它们决定了...
在Spring框架中,Bean生命周期是核心概念之一,它涉及到Bean的创建、初始化、使用和销毁等阶段。了解和掌握Bean生命周期对于开发高质量的Spring应用至关重要。以下是对Spring Bean生命周期的详细解析。 首先,Bean...
本文将探讨Spring中Service的生命周期,以及如何通过XML配置和注解来管理这些组件。 首先,Spring Service的生命周期通常包括实例化、初始化、正常运行、销毁四个阶段。在XML配置中,我们可以通过`<bean>`标签来...
SpringBean的生命周期.mdj
本文将详细介绍 Spring Bean 生命周期的概念、生命周期图、生命周期阶段、生命周期管理方式等相关知识点。 一、 Spring Bean 生命周期概述 Spring Bean 生命周期是指 Spring 容器中 Bean 的创建、初始化、销毁等...
Spring 生命周期是指 Spring 应用程序从启动到关闭的整个过程。Spring 生命周期包括应用程序的初始化、启动、运行和关闭等阶段。 11. Spring 配置 Spring 配置是指使用 Spring 框架的配置机制,帮助开发者快速构建...
5. **Spring生命周期回调**:除了上述的`@PostConstruct`和`@PreDestroy`,Spring还提供了一些其他的生命周期回调,如`SmartLifecycle`接口,允许在应用启动和停止时控制Bean的启动和停止顺序。`@Application...
本文主要介绍 Spring IoC 容器如何管理 Bean 的生命周期。 在应用开发中,常常需要执行一些特定的初始化工作,这些工作都是相对比较固定的,比如建立数据库连接,打开网络连接等,同时,在结束服务时,也有一些相对...
Spring 框架生命周期和 Bean 实例化过程 Spring 框架是一个非常流行的 Java Web 应用程序框架,它提供了一种灵活的方式来管理应用程序的生命周期。了解 Spring 的生命周期对于架构师和开发人员来说是非常重要的。 ...