SpringBoot慕课学习-SpringBoot开发常用技术整合-定时任务
Posted BigOrang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot慕课学习-SpringBoot开发常用技术整合-定时任务相关的知识,希望对你有一定的参考价值。
1. 启动类添加@EnableScheduling注解
@SpringBootApplication //开启定时任务 @EnableScheduling public class StartDemoApplication { public static void main(String[] args) { SpringApplication.run(StartDemoApplication.class, args); } }
2.建立定时任务,使用@Component注解
@Component public class TestTask { private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss"); //定义每过3秒执行任务 @Scheduled(fixedRate = 3000) public void reportCurrentTime() { System.out.println(dateFormat.format(new Date())); } }
定时任务表达式
@Scheduled(cron = "")
cron支持6位
表达式参考网址 cron.qqe2.com
如: @Scheduled(cron = "0/5 * * * * ? ")
以上是关于SpringBoot慕课学习-SpringBoot开发常用技术整合-定时任务的主要内容,如果未能解决你的问题,请参考以下文章