JAVA项目启动时执行特定方法之@PostConstruct和@PreConstruct注解

我们在研发项目时经常会遇到项目启动时需要加载一些数据,或者执行某个特定的方法,特别是加载数据,需要用到spring的依赖,所以比较尴尬。之前的都是通过spring上下文,去实例化依赖包,比较繁琐,今天无意中看到@PostConstruct和@PreConstruct注解,感觉很有意思!

  从Java EE5规范开始,Servlet增加了两个影响Servlet生命周期的注解(Annotation):@PostConstruct和@PreConstruct。这两个注解被用来修饰一个非静态的void()方法.而且这个方法不能有抛出异常声明。

package com.example.think.test;

import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;

/**
 * @author Tastill
 * @version 2019/1/25 10:53
 * @description Test2
 */
@Component
public class Test2 {
    @PostConstruct                                 //方式1
    public void method(){
        
    }
    
    public @PostConstruct void methodTwo(){        //方式2
    }
}

在类前一定要加上@Component注解,让spring托管,不然 @PostConstruct 无法执行!

1.@PostConstruct说明

     被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。

2.@PreDestroy说明

     被@PreDestroy修饰的方法会在服务器卸载Servlet的时候运行,并且只会被服务器调用一次,类似于Servlet的destroy()方法。被@PreDestroy修饰的方法会在destroy()方法之后运行,在Servlet被彻底卸载之前。(详见下面的程序实践)

3、Constructor 、 @Autowired 、 @PostConstruct的执行顺序是Constructor >> @Autowired >> @PostConstruct;所以,可以在@PostConstruct加载的类里直接使用spring依赖。另外,我看启动日志,发现此注解还在服务xml配置文件读取之后,所以,应该是在数据库实例化之后,不错这一点具体没测试,有兴趣的可以测试一下!

你可能感兴趣的:(JAVA)