@PostConstruct 和 @PreDestroy 指定初始化和销毁方法

Posted 方方方方方方

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@PostConstruct 和 @PreDestroy 指定初始化和销毁方法相关的知识,希望对你有一定的参考价值。

通过实现 @PostConstruct 和 @PreDestroy 注解,也可以指定 bean 的初始化和销毁方法

一、Student 类

public class Student{

    public Student(){
        System.out.println("创建 Student 对象");
    }
    
    //对象创建并赋值之后被调用
    @PostConstruct 
    public void init(){
        System.out.println("初始化");
    }
    
    //容器移出 Student 对象之前被调用
    @PreDestroy
    public void destroy(){
        System.out.println("销毁对象");
    }
    
}

二、配置类

@Configuration
public class ConfigOfLifeCycle {
    
    @Bean
    public Student student(){
        return new Student();
    }
}

三、测试代码

@Test
public void test3(){
    //创建 ioc 容器
    AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(ConfigOfLifeCycle.class);
    
    //关闭容器:用来测试 destory() 方法
    applicationContext.close();
}

 

以上是关于@PostConstruct 和 @PreDestroy 指定初始化和销毁方法的主要内容,如果未能解决你的问题,请参考以下文章

@PostConstruct

Spring@PostConstruct和@PreDestroy注解详解

多个类中 使用@PostConstruct,加载先后顺序

Java开发之@PostConstruct和@PreDestroy注解

Java开发之@PostConstruct和@PreConstruct注解

8 -- 深入使用Spring -- 2...4 使用@PostConstruct和@PreDestroy定制生命周期行为