java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > 使用CommandLineRunner和ApplicationRunner执行初始化业务

SpringBoot使用CommandLineRunner和ApplicationRunner执行初始化业务方式

作者:BlueKitty1210

这篇文章主要介绍了SpringBoot使用CommandLineRunner和ApplicationRunner执行初始化业务方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

业务场景

在业务场景中,有些情况下需要我们一启动项目就执行一些操作.

例如数据配置的相关初始化,通用缓存的数据构造等。

SpringBoot为我们提供了CommandLineRunner和ApplicationRunner两个接口来实现这个功能。

接口说明

CommandLineRunner和ApplicationRunner两个接口除了参数不同,其他基本相同,可以根据实际需求选择使用.

CommandLineRunner中的run方法参数为String..., ApplicationRunner中的run方法参数为ApplicationArguments.

在同等顺序中,ApplicationRunner会比CommandLineRunner优先执行

使用方法

定义一个类实现该接口,重写其中的run方法即可. 如果有多个实现类,我们可以通过@Order注解来定义优先级(数字越低越先执行)

@Order(1)
@Component
public class MyCommandLineRunner1 implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        System.out.println("========== 初始任务MyCommandLineRunner1 ==========");
    }
}

@Order(2)
@Component
public class MyCommandLineRunner2 implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        System.out.println("========== 初始任务MyCommandLineRunner2 ==========");
//        throw new RuntimeException("模拟异常");
    }
}

@Order(2)
@Component
public class MyApplicationRunner1 implements ApplicationRunner {

    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("========== 初始任务MyApplicationRunner1 ==========");
    }
}

启动项目, 输出如下:

注意事项

1. CommandLineRunner和ApplicationRunner的执行其实是整个项目启动周期中的一部分,Runner执行完成后,才最终启动项目.

2. 如果Runner中出现异常, 就会影响项目的启动,所以要在Runner中处理异常

3. 如果Runner中需要指定定时周期任务(如一直循环打印某些信息等),需要在异步线程中执行,否则项目的主线程会一直阻塞,无法启动成功

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文