写点什么

java 开发之 SpringBoot 实现自动执行代码

  • 2022 年 1 月 12 日
  • 本文字数:1289 字

    阅读完需:约 4 分钟

​前言

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


当然也可以去实现 Spring 的 ApplicationRunner 与 CommandLineRunner 接口去实现启动后运行的功能。在这里整理一下,在这些位置执行的区别以及加载顺序。


java 自身的启动时加载方式

static 代码块

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

构造方法

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

Spring 启动时加载方式

@PostConstruct 注解

PostConstruct 注解使用在方法上,这个方法在对象依赖注入初始化之后执行。

ApplicationRunner 和 CommandLineRunner

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


这两个接口需要实现一个 run 方法,将代码在 run 中实现即可。这两个接口功能基本一致,其区别在于 run 方法的入参。ApplicationRunner 的 run 方法入参为 ApplicationArguments,为 CommandLineRunner 的 run 方法入参为 String 数组。

何为 ApplicationArguments

官方文档解释为:


Provides access to the arguments that were used to run a SpringApplication.


在 Spring 应用运行时使用的访问应用参数。即我们可以获取到 SpringApplication.run(…)的应用参数。

Order 注解

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

代码测试

为了测试启动时运行的效果和顺序,编写几个测试代码来运行看看。


TestPostConstruct


@Componentpublic class TestPostConstruct {


static {    System.out.println("static");}public TestPostConstruct() {    System.out.println("constructer");}
@PostConstructpublic void init() { System.out.println("PostConstruct");}
复制代码


}


TestApplicationRunner

@Component@Order(1)public class TestApplicationRunner implements ApplicationRunner{    @Override    public void run(ApplicationArguments applicationArguments) throws Exception {        System.out.println("order1:TestApplicationRunner");    }}
复制代码


TestCommandLineRunner


@Component@Order(2)public class TestCommandLineRunner implements CommandLineRunner {    @Override    public void run(String... strings) throws Exception {        System.out.println("order2:TestCommandLineRunner");    }}
复制代码


执行结果


总结

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


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


因此,加载顺序为 static>constructer>@PostConstruct>CommandLineRunner 和 ApplicationRunner.


文章来源:Java 知音

用户头像

关注尚硅谷,轻松学IT 2021.11.23 加入

还未添加个人简介

评论

发布
暂无评论
java开发之SpringBoot实现自动执行代码