SpringBoot整合定时任务----Scheduled注解实现(一个注解全解决)
Posted 掉发的小王
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot整合定时任务----Scheduled注解实现(一个注解全解决)相关的知识,希望对你有一定的参考价值。
一、使用场景
二、准备工作
三、开始搭建配置
- 配置启动项
package com.wang.test.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling//启动定时任务
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
- cron表达式
- 定时任务方法
package com.wang.test.demo.task;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component//加载到容器中,可以被发现启动
public class TaskTest {
//cron表达式,来控制定时执行时间,这里是每5秒执行一次本方法,业务逻辑可以进行在此方法内进行书写
@Scheduled(cron = "0/5 * * * * ?")
public void printTimeOne(){
System.out.println("任务一:时间为-->"+System.currentTimeMillis());
}
@Scheduled(cron = "0/6 * * * * ?")
public void printTimeTwo(){
System.out.println("任务二:时间为-->"+System.currentTimeMillis());
}
}
四、结果展示
五、总结
以上是关于SpringBoot整合定时任务----Scheduled注解实现(一个注解全解决)的主要内容,如果未能解决你的问题,请参考以下文章
Spring系列——springboot整合quarter定时任务
#yyds干货盘点# springboot整合Elastic Job实现分片配置定时任务