Python 官方文档:入门教程 => 点击学习
我今天学习到SpringBoot里面自定义Bean的初始化与销毁方法 我先总结一下我学到的四种方法: 方法一: 指定init-method 和 destory-method 方法二:
我今天学习到SpringBoot里面自定义Bean的初始化与销毁方法
指定init-method 和 destory-method
通过让 Bean 实现 InitializingBean 接口,定义初始化逻辑
DisposableBean 接口,定义销毁逻辑
用 @PostConstruct,在 Bean 创建完成并且赋值完成后,执行该注解标注的方法
@PreDestroy,在容器销毁 Bean 之前,执行该注解标注的方法
通过让 Bean 实现 BeanPostProcessor 接口,在Bean 初始化前后进行一些处理工作
然后我就在想它们的执行顺序是怎样的:
配置类:
//告诉spring这是一个配置类
@Configuration
public class MainConfiGofLifeCycle {
//利用 init-method 和 destory-method
@Bean(initMethod="initTest", destroyMethod="detoryTest")
public Car car() {
return new Car();
}
//实现 InitializingBean , DisposableBean 接口
@Bean
public Cat cat() {
return new Cat();
}
//利用 @PostConstruct ,@PreDestroy
@Bean
public Dog dog() {
return new Dog();
}
//实现 BeanPostProcessor 接口
@Bean
public MyBeanPostProcessor myBeanPostProcessor() {
return new MyBeanPostProcessor();
}
}
4个 bean:
public class Car{
public void initTest() {
System.out.println(" .. init-method .. ");
}
public void detoryTest() {
System.out.println(" .. destory-method .. ");
}
}
public class Cat implements InitializingBean, DisposableBean {
//该Bean在销毁时,调用
public void destroy() throws Exception {
// TODO Auto-generated method stub
System.out.println(" .. DisposableBean ..");
}
//该Bean创建完成并且赋值完成后,调用
public void afterPropertiesSet() throws Exception {
// TODO Auto-generated method stub
System.out.println(" .. InitializingBean ..");
}
}
public class Dog {
//对象创建并赋值之后调用
@PostConstruct
public void init() {
System.out.println(" .. @PostConstruct .. ");
}
//容器移除对象之前
@PreDestroy
public void detory() {
System.out.println(" .. @PreDestroy .. ");
}
}
public class MyBeanPostProcessor implements BeanPostProcessor {
@Override
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
// TODO Auto-generated method stub
System.out.println(" .. postProcessBeforeInitialization .. ");
return bean;
}
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
// TODO Auto-generated method stub
System.out.println(" .. postProcessBeforeInitialization .. ");
return bean;
}
}
运行:
public class iocTest_LifeCycle {
@Test
public void test01() {
// 1. 创建IOC容器
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfigOfLifeCycle.class);
System.out.println("容器创建完成");
// 关闭容器
applicationContext.close();
}
}
执行结果:
思考:发现容器在加载 Bean 时是顺序的,因为我在MainConfigOfLifeCycle这个配置类里 @Bean 是顺序的,所有不能确定这次结果是否准确。
配置类:
@Configuration
public class MainConfigOfLifeCycle {
@Bean(initMethod="initTest", destroyMethod="detoryTest")
public Car car() {
return new Car();
}
}
Bean:
public class Car implements InitializingBean, DisposableBean, BeanPostProcessor {
public Car() {
System.out.println("Car 创建");
}
public void initTest() {
System.out.println(" .. init-method .. ");
}
public void detoryTest() {
System.out.println(" .. destory-method .. ");
}
@Override
public void afterPropertiesSet() throws Exception {
System.out.println(" .. InitializingBean .. ");
}
@Override
public void destroy() throws Exception {
System.out.println(" .. DisposableBean .. ");
}
@Override
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
System.out.println(" .. postProcessBeforeInitialization .. ");
return bean;
}
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
System.out.println(" .. postProcessAfterInitialization .. ");
return bean;
}
@PostConstruct
public void postConstructTest() {
System.out.println(" .. @PostConstruct .. ");
}
@PreDestroy
public void preDestroyTest() {
System.out.println(" .. @PreDestroy .. ");
}
}
运行:
public class IOCTest_LifeCycle {
@Test
public void test01() {
// 1. 创建IOC容器
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfigOfLifeCycle.class);
System.out.println("容器创建完成");
// 关闭容器
applicationContext.close();
}
}
执行结果:
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: SpringBoot中的Bean的初始化与销毁顺序解析
本文链接: https://lsjlt.com/news/132479.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0