Spring注解驱动开发——生命周期 @PostConstruct& @PreDestroy

可以使用JSR250;
   @PostConstruct: 在bean创建完成并且属性赋值完成;来执行初始化方法
   @PreDestroy:在容器销毁bean之前通知我们进行清理工作

 

实现类

package com.mongoubiubiu.bean;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

import org.springframework.stereotype.Component;

public class Dog {

    
    public Dog(){
        System.out.println("dog constructor.....");
    }
    
    //对象创建并赋值之后
    @PostConstruct
    public void init(){
        System.out.println("dog init.......");
    }
    
    @PreDestroy
    public void destory(){
        System.out.println("dog destory.......");
    }

}

配置类

Spring注解驱动开发——生命周期 @PostConstruct& @PreDestroy

 

测试类

Spring注解驱动开发——生命周期 @PostConstruct& @PreDestroy

 

 Spring注解驱动开发——生命周期 @PostConstruct& @PreDestroy

 

可见和用@Bean 指定初始化和销毁方法 的方式 效果一样

 

 

上一篇:入职第七天


下一篇:@PostConstruct注解