SpringBoot整合Quartz定时任务
Posted Mr_伍先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot整合Quartz定时任务相关的知识,希望对你有一定的参考价值。
记录一个SpringBoot 整合 Quartz 的Demo实例
POM.XML文件
<!-- 定时器任务 quartz需要导入的坐标 --> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>1.8.5</version> </dependency>
类似于控制器代码:
package com.xiaowu.quartz.demo; import java.util.Date; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; /*** * * Quartz设置项目全局的定时任务 * * @Component注解的意义 泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。一般公共的方法我会用上这个注解 * * * @author WQ * */ @Component public class QuartzDemo { @Scheduled(cron = "0 0/1 * * * ?") // 每分钟执行一次 public void work() throws Exception { System.out.println("执行调度任务:"+new Date()); } @Scheduled(fixedRate = 5000)//每5秒执行一次 public void play() throws Exception { System.out.println("执行Quartz定时器任务:"+new Date()); } @Scheduled(cron = "0/2 * * * * ?") //每2秒执行一次 public void doSomething() throws Exception { System.out.println("每2秒执行一个的定时任务:"+new Date()); } @Scheduled(cron = "0 0 0/1 * * ? ") // 每一小时执行一次 public void goWork() throws Exception { System.out.println("每一小时执行一次的定时任务:"+new Date()); } }
启动SpringBoot项目,即可。
public static void main(String[] args) { SpringApplication.run(Chapter1Application.class, args); }
,截图如下:
以上是关于SpringBoot整合Quartz定时任务的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot整合Quartz定时任务 的简单实例 2
SpringBoot整合Quartz实现动态的创建或删除定时任务并将定时调度任务持久化到MySQL以及Quartz集群配置