我是靠谱客的博主 兴奋草丛,最近开发中收集的这篇文章主要介绍CommandLineRunner和ApplicationRunner实现项目启动时执行任务,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

实现在项目启动时执行的功能,SpringBoot提供的一种简单的实现方案:添加一个Component组件,组件类实现CommandLineRunner接口或ApplicationRunner接口,把项目启动后要执行的任务的代码放在重写的run方法中。这两个接口不同的是ApplicationRunner会封装命令行参数,可以很方便地获取到命令行参数和参数值

注意如果有多个任务,需要使用@Order(value=1)注解决定任务执行的先后顺序

@Slf4j
@Component
public class CashValueTableCacheListener implements CommandLineRunner {

   
    @Autowired
    TableDataCache tableDataCache;

    @Override
    public void run(String... args) throws Exception {
        long start = System.currentTimeMillis();
        log.info("[{}][开始]", "加载数据");
        try {
            tableDataCache.loadCashValueTableCache();
          

        } catch (Exception e) {
            log.error("[{}][异常信息:{}][耗时:{}ms][结束]", e, methodMessage, (System.currentTimeMillis() - start));
        }
    }
}
@Component
public class ApplicationRunner1 implements ApplicationRunner {

    private static Logger logger = LoggerFactory.getLogger(ApplicationRunner1.class);

    @Override
    public void run(ApplicationArguments args) throws Exception {
        logger.info("执行application runner...");
        logger.info("获取到参数: " + args.getOptionValues("aaa"));
    }
}

 

最后

以上就是兴奋草丛为你收集整理的CommandLineRunner和ApplicationRunner实现项目启动时执行任务的全部内容,希望文章能够帮你解决CommandLineRunner和ApplicationRunner实现项目启动时执行任务所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部