SpringBoot启动时自动执行方法的几种方式

在开发SpringBoot项目过程中,有的时候需要预加载一些资源。如何实现在启动过程中执行代码,或启动成功后执行,是有很多种方式可以选择,我们可以在static代码块中实现,也可以在构造方法里实现,也可以使用@PostConstruct注解实现。

当然也可以去实现Spring的ApplicationRunnerCommandLineRunner接口去实现启动后运行的功能。在这里介绍一下执行的区别以及加载顺序。

java自身的启动时加载方式

static代码块

static 静态代码块,在类加载的时候即自动执行。

构造方法

在对象初始化时执行。执行顺序在 static 静态代码块之后。

Spring启动时加载方式

@PostConstruct 注解

@PostConstruct 作用于方法上面,这个方法在对象依赖注入初始化之后执行。

@Component
public class PostConstruct {

    @PostConstruct
    public void test() {
        System.out.println("PostConstruct:开始运行...");
    }
}

SpringBoot提供了两个接口来实现Spring容器启动完成后执行的功能,两个接口分别为CommandLineRunnerApplicationRunner

CommandLineRunner 接口代码实现:

@Component
@Order(1)
public class Start implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println("CommandLineRunner:开始运行..."); } }

ApplicationRunner接口代码实现:

@Component
@Order(2)
public class Start1 implements ApplicationRunner { @Override public void run(ApplicationArguments args) throws Exception { System.out.println("ApplicationRunner:开始运行..."); } }

Order注解

当有多个类实现了CommandLineRunnerApplicationRunner接口时,可以通过在类上添加@Order注解来设定运行顺序。

总结

Spring应用启动过程中,肯定是要自动扫描有@Component注解的类,加载类并初始化对象进行自动注入。加载类时首先要执行static静态代码块中的代码,之后再初始化对象时会执行构造方法。

在对象注入完成后,调用带有@PostConstruct注解的方法。当容器启动成功后,再根据@Order注解的顺序调用CommandLineRunnerApplicationRunner接口类中的run方法。

加载顺序为 static > constructer(构造方法) > @PostConstruct > CommandLineRunner > ApplicationRunner 

posted @ 2019-08-27 16:28  明天,你好啊  阅读(4655)  评论(0)    收藏  举报