SpringBoot启动任务
Posted 浮梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot启动任务相关的知识,希望对你有一定的参考价值。
SpringBoot启动任务
可以注入CommandLineRunner类及其实现类的Bean
Spring启动时会扫描到这些类,并执行其中的run方法
最简单的Demo,在启动类中注入CommandLineRunner
@SpringBootApplication
public class TacoCloudApplication {
public static void main(String[] args) {
SpringApplication.run(TacoCloudApplication.class, args);
}
@Bean
public CommandLineRunner dataLoader(IngredientRepository repo) {
return new CommandLineRunner() {
@Override
public void run(String... args) throws Exception {
//初始化操作
}
};
}
}
如果有多个启动任务,可以创建多个CommandLineRunner的子类
执行顺序由@Order指定,优先级是按value值从小到大顺序
以上是关于SpringBoot启动任务的主要内容,如果未能解决你的问题,请参考以下文章
springboot启动时执行任务CommandLineRunner
springboot启动流程构造SpringApplication实例对象
newCacheThreadPool()newFixedThreadPool()newScheduledThreadPool()newSingleThreadExecutor()自定义线程池(代码片段
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段