SpringBoot集成@Scheduled()定时任务

Posted benniaoxianfei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot集成@Scheduled()定时任务相关的知识,希望对你有一定的参考价值。

1.启动类增加注解:

@EnableScheduling
@ComponentScan({"com.xxx.test"})

1 @EnableScheduling
2 @ComponentScan({"com.xxx.test"})
3 @SpringBootApplication
4 public class MainApplication  {
5     public static void main(String[] args) {
6 
7         SpringApplication.run(MainApplication.class, args);
8     }

 

2.定时任务类增加注解:@Component :将当前类实例化注入到容器中

3.定时方法增加注解:@Scheduled(cron = "* */5 * * * ?")

 1 @Component
 2 public class JobTest {
 3 
 4     private static Logger log = LoggerFactory.getLogger(JobTest.class);
 5 
 6     /**
 7      * 秒、分、时、日、月、年
 8      */
 9     @Scheduled(cron = "* */5 * * * ?")
10     public void scheduleTest() {
11         log.info("系统定时任务测试开始");
12 
13         //TODO
14 
15         log.info("系统定时任务测试结束");
16     }

 

以上是关于SpringBoot集成@Scheduled()定时任务的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot整合@Scheduled定时计划

SpringBoot集成Quartz动态定时任务

SpringBoot集成Quartz动态定时任务

十springboot集成定时任务(Scheduling Tasks)

SpringBoot框架Scheduled注入参数说明

SpringBoot学习18:springboot使用Scheduled 定时任务器