关于Java中Bean的生命周期详解
作者:Mᴇᴇᴛ ꦿ᭄.
这篇文章主要介绍了关于Java中Bean的生命周期详解,所谓的⽣命周期指的是⼀个对象从诞⽣到销毁的整个⽣命过程,我们把这个过程就叫做⼀个对象的⽣命周期,需要的朋友可以参考下
⽣命周期
所谓的⽣命周期指的是⼀个对象从诞⽣到销毁的整个⽣命过程,我们把这个过程就叫做⼀个对象的⽣命周期。
Bean 的⽣命周期分为以下 5 ⼤部分:
- 实例化 Bean(为 Bean 分配内存空间)
- 设置属性(Bean 注⼊和装配)
- Bean 初始化
- 实现了各种 Aware 通知的⽅法,如 BeanNameAware、BeanFactoryAware、ApplicationContextAware 的接⼝⽅法;
- 执⾏ BeanPostProcessor 初始化前置⽅法;
- 执⾏ @PostConstruct 初始化⽅法,依赖注⼊操作之后被执⾏;
- 执⾏⾃⼰指定的 init-method ⽅法(如果有指定的话);
- 执⾏ BeanPostProcessor 初始化后置⽅法。
- 使⽤ Bean
- 销毁 Bean
- 销毁容器的各种⽅法,如 @PreDestroy、DisposableBean 接⼝⽅法、destroy-method。
- 执⾏流程如下图所示:
实例化和初始化的区别
实例化和属性设置是 Java 级别的系统“事件”,其操作过程不可⼈⼯⼲预和修改;
⽽初始化是给开发者提供的,可以在实例化之后,类加载完成之前进⾏⾃定义“事件”处理。
生命流程的“故事”
Bean 的⽣命流程看似繁琐,但咱们可以以⽣活中的场景来理解它,⽐如我们现在需要买⼀栋房⼦,那么我们的流程是这样的:
- 先买房(实例化,从⽆到有);
- 装修(设置属性);
- 买家电,如洗⾐机、冰箱、电视、空调等([各种]初始化);
- ⼊住(使⽤ Bean);
- 卖出去(Bean 销毁)。
生命周期演示
@Component public class BeanLifeComponent implements BeanNameAware { @PostConstruct public void postConstruct() { System.out.println("执⾏ PostConstruct()"); } public void init() { System.out.println("执⾏ BeanLifeComponent init-method"); } @PreDestroy public void preDestroy() { System.out.println("执⾏:preDestroy()"); } public void setBeanName(String s) { System.out.println("执⾏了 setBeanName ⽅法:" + s); } }
xml 配置如下:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:content="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> <content:component-scan base-package="com.bit.component"></content:component-scan> <beans> <bean id="beanLifeComponent" class="com.bit.component.BeanLifeComponent" init-method="init"></bean> </beans> </beans>
调用类:
public class BeanLifeTest { public static void main(String[] args) { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring-config.xml"); BeanLife life = context.getBean(BeanLife.class); System.out.println("执⾏ main ⽅法"); // 执⾏销毁⽅法 context.destroy(); } }
到此这篇关于关于Java中Bean的生命周期详解的文章就介绍到这了,更多相关Bean的生命周期内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!