首页>国内 > 正文

即时:如何在 Spring Boot 中使用 Quartz 调度作业

2022-07-26 20:03:27来源:51CTO.COM

在本文中,我们将看看如何使用Quartz框架来调度任务。Quartz是Java应用程序调度库的事实标准。Quartz支持在特定时间运行作业、重复作业执行、将作业存储在数据库中以及Spring集成。


(资料图片)

用于调度的Spring注解

在 Spring 应用程序中使用 Quartz 最简单的方法是使用@Scheduled注解。接下来,我们将考虑一个 Spring Boot 应用程序的示例。让我们添加必要的依赖项build.gradle

implementation "org.springframework.boot:spring-boot-starter-quartz"

并考虑一个例子

package quartzdemo.tasks;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Component;import java.util.Date;@Componentpublic class PeriodicTask {        @Scheduled(cron = "0/5 * * * * ?")    public void everyFiveSeconds() {        System.out.println("Periodic task: " + new Date());    }    }

此外,@Scheduled要使注解起作用,您需要使用@EnableScheduling注解添加配置。

package quartzdemo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.scheduling.annotation.EnableScheduling;@SpringBootApplication@EnableSchedulingpublic class QuartzDemoApplication {    public static void main(String[] args) {        SpringApplication.run(QuartzDemoApplication.class, args);    }}

结果将是每五秒在控制台中输出一个文本。

Periodic task: Thu Jul 07 18:24:50 EDT 2022

Periodic task: Thu Jul 07 18:24:55 EDT

2022 Periodic task: Thu Jul 07 18:25:00 EDT 2022

...

@Scheduled注解支持以下参数:

fixedRate- 允许您以指定的固定间隔运行任务。fixedDelay- 在最后一次调用完成和下一次调用开始之间以固定延迟执行任务。initialDelay- 该参数用于fixedRate并fixedDelay在第一次执行具有指定延迟的任务之前等待。cron- 使用 cron-string 设置任务执行计划。还支持宏@yearly(or @annually)、@monthly、@weekly、@daily(or @midnight) 和@hourly.

默认情况下fixedRate,fixedDelay和initialDelay以毫秒为单位设置。这可以使用timeUnit参数进行更改,将值设置NANOSECONDS为DAYS。

此外,您可以在 @Scheduled 注释中使用属性:

application.properties

cron-string=0/5 * * * * ?

PeriodicTask.java

@Componentpublic class PeriodicTask {    @Scheduled(cron = "${cron-string}")    public void everyFiveSeconds() {        System.out.println("Periodic task: " + new Date());    }}

要使用属性,您可以使用fixedRateString, fixedDelayString, 和initialDelayString参数来代替 fixedRate,fixedDelay和initialDelay相应的。

使用Quartz

在前面的例子中,我们执行了定时任务,但同时我们不能动态设置作业的开始时间,也不能给它传递参数。要解决这些问题,可以直接使用 Quartz。

下面列出了主要的 Quartz 接口:

Job是由包含我们希望执行的业务逻辑的类实现的接口JobDetails定义Job与之相关的实例和数据Trigger描述作业执行的时间表Scheduler是主要的 Quartz 界面,为作业和触发器提供所有操作和搜索操作

要直接使用 Quartz,无需使用@EnableScheduling注解定义配置org.springframework.boot:spring-boot-starter-quartz,您可以使用org.quartz-scheduler:quartz.

让我们定义 SimpleJob 类:

package quartzdemo.jobs;import org.quartz.Job;import org.quartz.JobExecutionContext;import java.text.MessageFormat;public class SimpleJob implements Job {    @Override    public void execute(JobExecutionContext context) {        System.out.println(MessageFormat.format("Job: {0}", getClass()));    }}

要实现Job接口,您只需要实现一个execute接受JobExecutionContext类型参数的方法。JobExecutionContext包含有关作业实例、触发器、调度程序的信息以及有关作业执行的其他信息。

现在让我们定义一个作业实例:

JobDetail job = JobBuilder.newJob(SimpleJob.class).build();

并创建一个将在五秒后触发的触发器:

Date afterFiveSeconds = Date.from(LocalDateTime.now().plusSeconds(5)        .atZone(ZoneId.systemDefault()).toInstant());Trigger trigger = TriggerBuilder.newTrigger()        .startAt(afterFiveSeconds)        .build();

另外,创建一个调度程序:

SchedulerFactory schedulerFactory = new StdSchedulerFactory();Scheduler scheduler = schedulerFactory.getScheduler();

在“待机”模式下Scheduler初始化,所以我们必须调用start方法:

scheduler.start();

现在我们可以安排作业的执行:

scheduler.scheduleJob(job, trigger);

更进一步,在创建时JobDetails,让我们添加额外的数据并在执行作业时使用它:

QuartzDemoApplication.java

@SpringBootApplicationpublic class QuartzDemoApplication {    public static void main(String[] args) {        SpringApplication.run(QuartzDemoApplication.class, args);        onStartup();    }    private static void onStartup() throws SchedulerException {        JobDetail job = JobBuilder.newJob(SimpleJob.class)                .usingJobData("param", "value") // add a parameter                .build();        Date afterFiveSeconds = Date.from(LocalDateTime.now().plusSeconds(5)                .atZone(ZoneId.systemDefault()).toInstant());        Trigger trigger = TriggerBuilder.newTrigger()                .startAt(afterFiveSeconds)                .build();        SchedulerFactory schedulerFactory = new StdSchedulerFactory();        Scheduler scheduler = schedulerFactory.getScheduler();        scheduler.start();        scheduler.scheduleJob(job, trigger);    }}

SimpleJob.java

public class SimpleJob implements Job {    @Override    public void execute(JobExecutionContext context) {        JobDataMap dataMap = context.getJobDetail().getJobDataMap();        String param = dataMap.getString("param");        System.out.println(MessageFormat.format("Job: {0}; Param: {1}",                getClass(), param));    }}

需要注意的是,添加到的所有值都JobDataMap必须是可序列化的。

工作商店

Quartz 将有关JobDetail、Trigger的数据和其他信息存储在JobStore. 默认情况下,JobStore使用内存。这意味着如果我们在它们被触发之前已经安排了任务并关闭了应用程序(例如,在重新启动或崩溃时),那么它们将永远不会再次执行。Quartz 还支持 JDBC-JobStore 在数据库中存储信息。

在使用 JDBC-JobStore 之前,需要在 Quartz 将使用的数据库中创建表。默认情况下,这些表的前缀为QRTZ_.

Quartz 源代码包含用于为各种数据库(如 Oracle、Postgres、MS SQL Server、MySQL 等)创建表的SQL 脚本,并且还有一个用于 Liquibase 的现成 XML 文件。

spring.quartz.jdbc.initialize-schema=always此外,通过指定属性,可以在启动应用程序时自动创建 QRTZ 表。

为简单起见,我们将使用第二种方法和 H2 数据库。让我们配置一个数据源,使用 JDBCJobStore 并在 application.properties 中创建 QRTZ 表:

spring.datasource.url=jdbc:h2:mem:testdb spring.datasource.driverClassName=org.h2.Driver spring.datasource.username=sa spring.datasource.password= spring.quartz.job-store-type=jdbc spring.quartz.jdbc.initialize-schema=always

要考虑这些设置,必须将调度程序创建为 Spring bean:

package quartzdemo;import org.quartz.*;import org.springframework.boot.CommandLineRunner;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.context.annotation.Bean;import org.springframework.scheduling.annotation.EnableScheduling;import org.springframework.scheduling.quartz.SchedulerFactoryBean;import quartzdemo.jobs.SimpleJob;import java.time.LocalDateTime;import java.time.ZoneId;import java.util.Date;@SpringBootApplication@EnableSchedulingpublic class QuartzDemoApplication {    public static void main(String[] args) {        SpringApplication.run(QuartzDemoApplication.class, args);    }    @Bean()    public Scheduler scheduler(SchedulerFactoryBean factory) throws SchedulerException {        Scheduler scheduler = factory.getScheduler();        scheduler.start();        return scheduler;    }    @Bean    public CommandLineRunner run(Scheduler scheduler) {        return (String[] args) -> {            JobDetail job = JobBuilder.newJob(SimpleJob.class)                    .usingJobData("param", "value") // add a parameter                    .build();            Date afterFiveSeconds = Date.from(LocalDateTime.now().plusSeconds(5)                    .atZone(ZoneId.systemDefault()).toInstant());            Trigger trigger = TriggerBuilder.newTrigger()                    .startAt(afterFiveSeconds)                    .build();            scheduler.scheduleJob(job, trigger);        };    }}
线程池配置

Quartz 在单独的线程中运行每个任务,您可以为调度程序配置线程池。还需要注意的是,默认情况下,通过@Scheduled注解和直接通过 Quartz 启动的任务是在不同的线程池中启动的。我们可以确保这一点:

PeriodicTask.java

@Componentpublic class PeriodicTask {    @Scheduled(cron = "${cron-string}")    public void everyFiveSeconds() {        System.out.println(MessageFormat.format("Periodic task: {0}; Thread: {1}",                new Date().toString(), Thread.currentThread().getName()));    }}

SimpleJob.java

public class SimpleJob implements Job {    @Override    public void execute(JobExecutionContext context) {        JobDataMap dataMap = context.getJobDetail().getJobDataMap();        String param = dataMap.getString("param");        System.out.println(MessageFormat.format("Job: {0}; Param: {1}; Thread: {2}",                getClass(), param, Thread.currentThread().getName()));    }}

输出将是:

Periodic task: Thu Jul 07 19:22:45 EDT 2022; Thread: scheduling-1 Job: class quartzdemo.jobs.SimpleJob; Param: value; Thread: quartzScheduler_Worker-1 Periodic task: Thu Jul 07 19:22:50 EDT 2022; Thread: scheduling-1 Periodic task: Thu Jul 07 19:22:55 EDT 2022; Thread: scheduling-1 Periodic task: Thu Jul 07 19:23:00 EDT 2022; Thread: scheduling-1

任务的线程池@Scheduled只包含一个线程。

让我们更改 @Scheduled 任务的调度程序设置:

package quartzdemo;import org.springframework.context.annotation.Configuration;import org.springframework.scheduling.annotation.SchedulingConfigurer;import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;import org.springframework.scheduling.config.ScheduledTaskRegistrar;@Configurationpublic class SchedulingConfiguration implements SchedulingConfigurer {    @Override    public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {        ThreadPoolTaskScheduler threadPoolTaskScheduler = new ThreadPoolTaskScheduler();        threadPoolTaskScheduler.setPoolSize(10);        threadPoolTaskScheduler.setThreadNamePrefix("my-scheduled-task-pool-");        threadPoolTaskScheduler.initialize();        taskRegistrar.setTaskScheduler(threadPoolTaskScheduler);    }}

输出现在将是这样的:

Periodic task: Thu Jul 07 19:44:10 EDT 2022; Thread: my-scheduled-task-pool-1 Job: class quartzdemo.jobs.SimpleJob; Param: value; Thread: quartzScheduler_Worker-1 Periodic task: Thu Jul 07 19:44:15 EDT 2022; Thread: my-scheduled-task-pool-1 Periodic task: Thu Jul 07 19:44:20 EDT 2022; Thread: my-scheduled-task-pool-2

如您所见,这些设置仅影响使用注释设置的任务。

现在让我们更改直接使用 Quartz 的调度程序的设置。这可以通过两种方式完成:通过属性文件或通过创建 bean SchedulerFactoryBeanCustomizer。

让我们使用第一种方法。如果我们没有通过 Spring 初始化 Quartz,我们将不得不在 quartz.properties 文件中注册属性。在我们的例子中,我们需要在 application.properties 中注册属性,并spring.quartz.properties.为其添加前缀。

application.properties

spring.quartz.properties.org.quartz.threadPool.threadNamePrefix=my-scheduler_Worker spring.quartz.properties.org.quartz.threadPool.threadCount=25

让我们启动应用程序。现在输出将是这样的:

Periodic task: Sat Jul 23 10:45:55 MSK 2022; Thread: my-scheduled-task-pool-1 Job: class quartzdemo.jobs.SimpleJob; Param: value; Thread: my-scheduler_Worker-1

现在调用启动任务的线程my-scheduler_Worker-1。

多个调度器

如果您需要创建多个具有不同参数的调度程序,则必须定义多个SchedulerFactoryBeans. 让我们看一个例子。

package quartzdemo;import quartzdemo.jobs.SimpleJob;import org.quartz.*;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.boot.CommandLineRunner;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.context.annotation.Bean;import org.springframework.scheduling.annotation.EnableScheduling;import org.springframework.scheduling.quartz.SchedulerFactoryBean;import javax.sql.DataSource;import java.time.LocalDateTime;import java.time.ZoneId;import java.util.Date;import java.util.Properties;@SpringBootApplication@EnableSchedulingpublic class QuartzDemoApplication {    public static void main(String[] args) {        SpringApplication.run(QuartzDemoApplication.class, args);    }    @Bean("customSchedulerFactoryBean1")    public SchedulerFactoryBean customSchedulerFactoryBean1(DataSource dataSource) {        SchedulerFactoryBean factory = new SchedulerFactoryBean();        Properties properties = new Properties();        properties.setProperty("org.quartz.threadPool.threadNamePrefix", "my-custom-scheduler1_Worker");        factory.setQuartzProperties(properties);        factory.setDataSource(dataSource);        return factory;    }    @Bean("customSchedulerFactoryBean2")    public SchedulerFactoryBean customSchedulerFactoryBean2(DataSource dataSource) {        SchedulerFactoryBean factory = new SchedulerFactoryBean();        Properties properties = new Properties();        properties.setProperty("org.quartz.threadPool.threadNamePrefix", "my-custom-scheduler2_Worker");        factory.setQuartzProperties(properties);        factory.setDataSource(dataSource);        return factory;    }    @Bean("customScheduler1")    public Scheduler customScheduler1(@Qualifier("customSchedulerFactoryBean1") SchedulerFactoryBean factory) throws SchedulerException {        Scheduler scheduler = factory.getScheduler();        scheduler.start();        return scheduler;    }    @Bean("customScheduler2")    public Scheduler customScheduler2(@Qualifier("customSchedulerFactoryBean2") SchedulerFactoryBean factory) throws SchedulerException {        Scheduler scheduler = factory.getScheduler();        scheduler.start();        return scheduler;    }    @Bean    public CommandLineRunner run(@Qualifier("customScheduler1") Scheduler customScheduler1,                                 @Qualifier("customScheduler2") Scheduler customScheduler2) {        return (String[] args) -> {            Date afterFiveSeconds = Date.from(LocalDateTime.now().plusSeconds(5).atZone(ZoneId.systemDefault()).toInstant());            JobDetail jobDetail1 = JobBuilder.newJob(SimpleJob.class).usingJobData("param", "value1").build();            Trigger trigger1 = TriggerBuilder.newTrigger().startAt(afterFiveSeconds).build();            customScheduler1.scheduleJob(jobDetail1, trigger1);            JobDetail jobDetail2 = JobBuilder.newJob(SimpleJob.class).usingJobData("param", "value2").build();            Trigger trigger2 = TriggerBuilder.newTrigger().startAt(afterFiveSeconds).build();            customScheduler2.scheduleJob(jobDetail2, trigger2);        };    }}

输出:

Job: class quartzdemo.jobs.SimpleJob; Param: value2; Thread: my-custom-scheduler2_Worker-1 Job: class quartzdemo.jobs.SimpleJob; Param: value1; Thread: my-custom-scheduler1_Worker-1

结论

Quartz 是一个用于自动执行计划任务的强大框架。它既可以在简单直观的 Spring 注解的帮助下使用,也可以通过精细的定制和调整来使用,从而为复杂的问题提供解决方案。

原文标题:​​How to Schedule Jobs With Quartz in Spring Boot​​

关键词: 调度程序 应用程序 其他信息 是这样的 还有一个

相关新闻

Copyright 2015-2020   三好网  版权所有