我是靠谱客的博主 唠叨发夹,最近开发中收集的这篇文章主要介绍应用初始化完执行某些方法摘要CommandLineRunner接口使用ApplicationRunner接口的使用启动过程注意事项,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
摘要
有时我们需要在springboot项目启动后初始化某些数据、执行某些方法等等。此时可以通过实现CommandLineRunner或者ApplicationRunner接口完成。
CommandLineRunner接口使用
通过@Component将bean托管给spring
通过@Order设置顺序
@Order(1)
@Component
public class FirstCommandLineRunner implements CommandLineRunner {
@Override
public void run(String... strings) throws Exception {
System.out.println("执行FirstCommandLineRunner");
}
}
ApplicationRunner接口的使用
通过@Component将bean托管给spring
通过@Order设置顺序
@Order(1)
@Component
public class FirstApplicationRunner implements ApplicationRunner {
@Override
public void run(ApplicationArguments applicationArguments) throws Exception {
System.out.println("执行FirstApplicationRunner");
}
}
启动过程
private void callRunners(ApplicationContext context, ApplicationArguments args) {
List<Object> runners = new ArrayList();
runners.addAll(context.getBeansOfType(ApplicationRunner.class).values());
runners.addAll(context.getBeansOfType(CommandLineRunner.class).values());
AnnotationAwareOrderComparator.sort(runners);
Iterator var4 = (new LinkedHashSet(runners)).iterator();
while(var4.hasNext()) {
Object runner = var4.next();
if(runner instanceof ApplicationRunner) {
this.callRunner((ApplicationRunner)runner, args);
}
if(runner instanceof CommandLineRunner) {
this.callRunner((CommandLineRunner)runner, args);
}
}
}
注意事项
- 先执行ApplicationRunner再执行CommandLineRunner
- CommandLineRunner 和ApplicationRunner 是属于springboot项目启动的一部分。如果在CommandLineRunner、ApplicationRunner执行时报错,应用会无法启动
最后
以上就是唠叨发夹为你收集整理的应用初始化完执行某些方法摘要CommandLineRunner接口使用ApplicationRunner接口的使用启动过程注意事项的全部内容,希望文章能够帮你解决应用初始化完执行某些方法摘要CommandLineRunner接口使用ApplicationRunner接口的使用启动过程注意事项所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复