SpringBoot启动任务
2021-05-14 06:30
标签:order app ica load val 操作 spring ide DApp 可以注入CommandLineRunner类及其实现类的Bean Spring启动时会扫描到这些类,并执行其中的run方法 最简单的Demo,在启动类中注入CommandLineRunner 如果有多个启动任务,可以创建多个CommandLineRunner的子类 SpringBoot启动任务 标签:order app ica load val 操作 spring ide DApp 原文地址:https://www.cnblogs.com/AganRun/p/13125933.htmlSpringBoot启动任务
@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 {
//初始化操作
}
};
}
}
执行顺序由@Order指定,优先级是按value值从小到大顺序