Springboot 启动加载器

启动加载器简介

简单来讲:就是springboot 容器启动之后做些什么初始化工作。

代码实践

方式一:实现 CommandLineRunner,重写 run 方法
@Component
public class FirstCommandLineRunner implements CommandLineRunner {
    @Override
    public void run(String... args) throws Exception {
        System.out.println("first command line runner ...");
    }
}
方式二:实现 ApplicationRunner,重写 run 方法
@Component
public class FirstApplicationRunner implements ApplicationRunner {
    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("first application runner");
    }
}
运行结果

运行结果

源码解析

从Springboot 的主函数跟进去,run 方法,进入SpringApplication中的run方法;查看callRunners方法
主函数 run 方法SpringApplication
SpringApplciation

执行顺序

由源码可以看出 ApplicationRunner 比 CommangLineRunner 要先执行。
当程序启动时,项目中多个实现CommandLineRunner和ApplicationRunner接口的类。
为了使他们按照自定义顺序执行,可以使用@Order注解或实现Ordered接口。

@Component
@Order(1)
public class FirstCommandLineRunner implements CommandLineRunner {
    @Override
    public void run(String... args) throws Exception {
        System.out.println("first command line runner ...");
    }
}
@Component
@Order(2)
public class FirstApplicationRunner implements ApplicationRunner {
    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("first application runner");
    }
}

运行结果

启动加载器的对比

ApplicationRunner 和 CommandLineRunner 都是接口,子类都必须实现 Run方法。不同在于在没有Order注解下 ApplicationRunner 优先于 CommandLineRunner ,还有就是接受的参数方式不同:
启动参数设置
CommandLineRunner
ApplicationRunner
ApplicationArguments是对参数(main方法)做了进一步的处理,可以解析–name=value的,可以通过name来获取value;CommandLineRunner 接受的参数是 字符串。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值