计时器介绍
启动加载器实战
实现方式1
- 实现
CommandLineRunner
接口 - 重写run方法
- 通过Order进行排序
示例:
@Component
@Order(1)
public class FirstCommandlineRunner implements CommandLineRunner {@Overridepublic void run(String... args) throws Exception {System.out.println("\u001B[32m >>> startup first runner<<<");}
}
实现方式2
- 实现
ApplicationRunner
接口 - 重写run方法
- 通过order排序
@Component
@Order(1)
public class FirstApplicationRunner implements ApplicationRunner {@Overridepublic void run(ApplicationArguments args) throws Exception {System.out.println("\u001B[32m >>> startup first application runner<<<");}
}
注意:
- 通过order值指定顺序
- order值相同ApplicationRunner实现优先
启动加载器原理解析
callRunners实现
面试题
- SpringBoot定时器的实现?它有哪些优点?
- 让你去设计实现一个计时器,你的思路?
- 怎么实现在Spring Boot启动后执行程序?
-
- 通过启动加载器进行实现
- 启动加载器如何实现?
- 启动加载器的实现有什么异同点?
- 启动加载器的调用时机?