spring boot 2.0 quartz 轻松实现定时任务和作业调度

简介: spring boot 2.0 quartz 轻松实现定时任务和作业调度

作者|olive丶

来源|

https://blog.csdn.net/asd1098626303/article/details/80831114


最近在做一个彩票相关的项目,主要涉及到不定时开奖,不定时封盘,原本打算使用springboot 自带的Schedule进行这一系列的工作,由于不能自动的添加定时任务,所以使用quartz,spring boot 2.0集成了quartz,所以决定尝试下quartz用于实现作业调度。

做的时候查看了很多资料,都写的花里胡哨的,要么就是做的东西太完整了,要么就是完全不能理解,要么就是很早以前的做法了,让人很头晕,所以说做个很简单明了的教程,说一下如何使用

https://docs.spring.io/spring-boot/docs/2.0.3.RELEASE/reference/htmlsingle/#boot-features-quartz

build.gradle:

uildscript {

       ext  {

              springBootVersion  = '2.0.3.RELEASE'

       }

       repositories  {

              maven{  url 'http://maven.aliyun.com/nexus/content/groups/public'}

       }

       dependencies  {

              classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")

       }

}

apply plugin: 'java'

apply plugin: 'idea'

apply plugin: 'org.springframework.boot'

apply plugin: 'io.spring.dependency-management'

group = 'com.zhu'

version = '0.0.1-SNAPSHOT'

sourceCompatibility = 1.8

repositories {

       maven{  url 'http://maven.aliyun.com/nexus/content/groups/public'}

}

dependencies {

       compile('org.springframework.boot:spring-boot-starter-web')

       compile('org.springframework.boot:spring-boot-starter-quartz')

       testCompile('org.springframework.boot:spring-boot-starter-test')

}

build.gradle中引入spring-boot-starter-quartz

之后如果没什么特殊需求的话,根本不需要任何的花里胡哨的配置,直接编码。

创建 ScheduleService.java,用于创建定时任务,这里动态的创建了两个定时任务,每隔1秒和每隔2秒运行。创建时需要新建JobDetail(任务)以及CronTrigger(定时任务触发器) ,并且scheduler.scheduleJob(jobDetail,cronTrigger);把任务添加到任务队列中。

package com.zhu.zqjc.schedule;

import  com.zhu.zqjc.bean.enums.FootballStatus;

import com.zhu.zqjc.dao.FootBallMatchDao;

import com.zhu.zqjc.entity.FootBallMatch;

import org.quartz.*;

import  org.springframework.beans.factory.annotation.Autowired;

import  org.springframework.stereotype.Service;

import org.springframework.web.bind.annotation.GetMapping;

import java.time.LocalDateTime;

import  java.time.format.DateTimeFormatter;

import java.util.List;

@Service

public class ScheduleService {

     @Autowired

     private Scheduler scheduler;

     public void testScheduleTask() throws SchedulerException {

         for (int i = 1; i < 3; i++) {

         JobDetail jobDetail = JobBuilder.newJob(TestSchedule.class)

                 .withIdentity("updateMatch"+i, "updateMatch")

                .withDescription("定时比赛Id为"+i)

                .build();

         //cron表达式 表示每隔i秒执行

         CronScheduleBuilder scheduleBuilder =  CronScheduleBuilder.cronSchedule(String.format("0/%d * * * * ?  ",i))

                .withMisfireHandlingInstructionDoNothing();

         CronTrigger cronTrigger = TriggerBuilder.newTrigger()

                 .withIdentity("updateMatch"+i, "updateMatch")

                .withDescription("定时比赛Id为"+i)

                 .withSchedule(scheduleBuilder)

                 .startNow().build();

         scheduler.scheduleJob(jobDetail,cronTrigger);

         }

     }

}

TestSchedule.java 定时任务的执行类,在executeInternal函数中执行定时任务的逻辑

package com.zhu.zqjc.schedule;

import org.quartz.JobExecutionContext;

import org.quartz.JobExecutionException;

import org.springframework.scheduling.quartz.QuartzJobBean;

public class TestSchedule  extends QuartzJobBean {

     /**

      * Execute the actual job. The job data map will already have been

      * applied as bean property values by execute. The contract is

      * exactly the same as for the standard Quartz execute method.

      *

      * @param context

      * @see #execute

      */

     @Override

     protected void executeInternal(JobExecutionContext context) throws  JobExecutionException {

         System.out.println("定时任务执行 " +  context.getJobDetail().getDescription());

     }

}

 

StartListen.java 执行定时任务

package com.zhu.zqjc.listener;

import  com.zhu.zqjc.bean.enums.FootballStatus;

import com.zhu.zqjc.conf.SystemConf;

import com.zhu.zqjc.dao.FootBallMatchDao;

import com.zhu.zqjc.entity.FootBallMatch;

import  com.zhu.zqjc.schedule.ScheduleService;

import com.zhu.zqjc.schedule.UpdateMatchSchedule;

import org.quartz.*;

import  org.springframework.beans.factory.annotation.Autowired;

import  org.springframework.beans.factory.annotation.Value;

import  org.springframework.boot.context.event.ApplicationReadyEvent;

import org.springframework.context.ApplicationListener;

import  org.springframework.stereotype.Component;

import weixin.popular.support.TokenManager;

import java.util.Arrays;

import java.util.List;

/**

 *  Created by zhu yingzhi on 2018/6/6.

 *  @author  yingzhi zhu

 *

 */

@Component

public class StartListen implements  ApplicationListener<ApplicationReadyEvent> {

     @Autowired

     private ScheduleService scheduleService;

     @Override

     public void onApplicationEvent(final ApplicationReadyEvent event) {

         try {

             scheduleService.testScheduleTask();

         } catch (Exception e) {

            e.printStackTrace();

         }

     }

}

运行效果:

目录
相关文章
|
3月前
|
资源调度 Java 调度
Spring Cloud Alibaba 集成分布式定时任务调度功能
定时任务在企业应用中至关重要,常用于异步数据处理、自动化运维等场景。在单体应用中,利用Java的`java.util.Timer`或Spring的`@Scheduled`即可轻松实现。然而,进入微服务架构后,任务可能因多节点并发执行而重复。Spring Cloud Alibaba为此发布了Scheduling模块,提供轻量级、高可用的分布式定时任务解决方案,支持防重复执行、分片运行等功能,并可通过`spring-cloud-starter-alibaba-schedulerx`快速集成。用户可选择基于阿里云SchedulerX托管服务或采用本地开源方案(如ShedLock)
105 1
|
13天前
|
Java BI 调度
Java Spring的定时任务的配置和使用
遵循上述步骤,你就可以在Spring应用中轻松地配置和使用定时任务,满足各种定时处理需求。
89 1
|
22天前
|
存储 Java API
简单两步,Spring Boot 写死的定时任务也能动态设置:技术干货分享
【10月更文挑战第4天】在Spring Boot开发中,定时任务通常通过@Scheduled注解来实现,这种方式简单直接,但存在一个显著的限制:任务的执行时间或频率在编译时就已经确定,无法在运行时动态调整。然而,在实际工作中,我们往往需要根据业务需求或外部条件的变化来动态调整定时任务的执行计划。本文将分享一个简单两步的解决方案,让你的Spring Boot应用中的定时任务也能动态设置,从而满足更灵活的业务需求。
59 4
|
4月前
|
资源调度 Java 调度
Spring Cloud Alibaba 集成分布式定时任务调度功能
Spring Cloud Alibaba 发布了 Scheduling 任务调度模块 [#3732]提供了一套开源、轻量级、高可用的定时任务解决方案,帮助您快速开发微服务体系下的分布式定时任务。
14834 26
|
3月前
|
Java 关系型数据库 MySQL
SpringBoot 集成 Quartz + MySQL
SpringBoot 集成 Quartz + MySQL
99 1
|
3月前
|
Java 开发者 Spring
Spring Boot实战宝典:揭秘定时任务的幕后英雄,让业务处理如流水般顺畅,轻松驾驭时间管理艺术!
【8月更文挑战第29天】在现代应用开发中,定时任务如数据备份、报告生成等至关重要。Spring Boot作为流行的Java框架,凭借其强大的集成能力和简洁的配置方式,为开发者提供了高效的定时任务解决方案。本文详细介绍了如何在Spring Boot项目中启用定时任务支持、编写定时任务方法,并通过实战案例展示了其在业务场景中的应用,同时提供了注意事项以确保任务的正确执行。
46 0
|
3月前
|
Dubbo Java 调度
揭秘!Spring Cloud Alibaba的超级力量——如何轻松驾驭分布式定时任务调度?
【8月更文挑战第20天】在现代微服务架构中,Spring Cloud Alibaba通过集成分布式定时任务调度功能解决了一致性和可靠性挑战。它利用TimerX实现任务的分布式编排与调度,并通过`@SchedulerLock`确保任务不被重复执行。示例代码展示了如何配置定时任务及其分布式锁,以实现每5秒仅由一个节点执行任务,适合构建高可用的微服务系统。
63 0
|
4月前
|
JavaScript Java 测试技术
基于SpringBoot+Vue+uniapp的课程考勤及作业提交App的详细设计和实现(源码+lw+部署文档+讲解等)
基于SpringBoot+Vue+uniapp的课程考勤及作业提交App的详细设计和实现(源码+lw+部署文档+讲解等)
|
4月前
|
SQL Java 调度
实时计算 Flink版产品使用问题之使用Spring Boot启动Flink处理任务时,使用Spring Boot的@Scheduled注解进行定时任务调度,出现内存占用过高,该怎么办
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。
|
4月前
|
JavaScript Java 测试技术
基于springboot+vue.js+uniapp的城市公交调度系统附带文章源码部署视频讲解等
基于springboot+vue.js+uniapp的城市公交调度系统附带文章源码部署视频讲解等
37 2