Spring之Bean的生命周期源码解析(下)

本文详细阐述了Spring容器中Bean的销毁过程,涉及DisposableBean接口、AutoCloseable接口、destroyMethod的使用以及适配器模式在销毁阶段的应用。重点讲解了如何在Spring关闭时判断和销毁Bean,以及适配策略确保正确执行销毁操作。
摘要由CSDN通过智能技术生成

Bean的销毁过程

Bean销毁是发送在Spring容器关闭过程中的。 ​

在Spring容器关闭时,比如:

AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
UserService userService = (UserService) context.getBean("userService");
userService.test();

// 容器关闭
context.close();

在Bean创建过程中,在最后(初始化之后),有一个步骤会去判断当前创建的Bean是不是DisposableBean:

1、当前Bean是否实现了DisposableBean接口
2、或者,当前Bean是否实现了AutoCloseable接口
3、BeanDefinition中是否指定了destroyMethod
4、调用DestructionAwareBeanPostProcessor.requiresDestruction(bean)进行判断

  • ApplicationListenerDetector中直接使得ApplicationListener是DisposableBean
  • InitDestroyAnnotationBeanPostProcessor中使得拥有@PreDestroy注解了的方法就是DisposableBean

5、把符合上述任意一个条件的Bean适配成DisposableBeanAdapter对象,并存入disposableBeans中(一个LinkedHashMap)

在Spring容器关闭过程时:

1、首先发布ContextClosedEvent事件
2、调用lifecycleProcessor的onCloese()方法
3、销毁单例Bean

  • 遍历disposableBeans

a.把每个disposableBean从单例池中移除
b.调用disposableBean的destroy()
c.如果这个disposableBean还被其他Bean依赖了,那么也得销毁其他Bean
如果这个disposableBean还包含了inner beans,将这些Bean从单例池中移除掉 (inner bean参考https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-inner-beans)

  • 清空manualSingletonNames,是一个Set,存的是用户手动注册的单例Bean的beanName
  • 清空allBeanNamesByType,是一个Map,key是bean类型,value是该类型所有的beanName数组
  • 清空singletonBeanNamesByType,和allBeanNamesByType类似,只不过只存了单例Bean

这里涉及到一个设计模式:适配器模式

在销毁时,Spring会找出实现了DisposableBean接口的Bean。 ​

但是我们在定义一个Bean时,如果这个Bean实现了DisposableBean接口,或者实现了AutoCloseable接口,或者在BeanDefinition中指定了destroyMethodName,那么这个Bean都属于“DisposableBean”,这些Bean在容器关闭时都要调用相应的销毁方法。

所以,这里就需要进行适配,将实现了DisposableBean接口、或者AutoCloseable接口等适配成实现了DisposableBean接口,所以就用到了DisposableBeanAdapter。

会把实现了AutoCloseable接口的类封装成DisposableBeanAdapter,而DisposableBeanAdapter实现了DisposableBean接口。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值