quartz job运行中修改cron表达式_SpringBoot大神教程3:集成Quartz

本文介绍了如何在SpringBoot应用中集成Quartz,并详细讲解了如何在Quartz job运行过程中修改cron表达式,包括在pom.xml中引入Quartz依赖,配置Quartz Configuration和application.properties,以及在Job中实现具体业务。
摘要由CSDN通过智能技术生成

要点

  1. pom.xml引入Quartz依赖
  2. 配置Quartz Configuration
  3. application.properties配置Quartz
  4. 下载SQL脚步,导入到数据库
  5. Job中实现业务

1. pom.xml引入Quartz依赖

org.springframework.boot spring-boot-starter-quartz

2. 配置Quartz Configuration

package com.ly.job;@Configurationpublic class QuartzConfig { //cron表达式,如cron=0 0/5 * * * ? @Value("${push.info.cron}") private String pushInfoCron; //设置Job @Bean public JobDetail pushOrderInfoJobDetail() { return JobBuilder.newJob(PushOrderInfoJob.class).withIdentity("pushOrderInfoJob").storeDurably().build(); } //设置Trigger @Bean public Trigger pushOrderInfoJobTrigger() { CronScheduleBuilder scheduleBuilder = CronScheduleBuilder.cronSchedule(pushInfoCron); return TriggerBuilder.newTrigger().forJob(pushOrderInfoJobDetail()) .withIdentity("pushOrderInfoJob") .withSchedule(scheduleBuilder) .build(); }}

3. application.properties配置Quartz

spring.quartz.properties.org.quartz.scheduler.instanceName=clusteredSchedulerspring.quartz.properties.org.quartz.scheduler.instanceId=AUTOspring.quartz.properties.org.quartz.jobStore.class=org.quartz.impl.jdbcjobstore.JobStoreTXspring.quartz.properties.org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegatespring.quartz.properties.org.quartz.jobStore.tablePrefix=QRTZ_spring.quartz.properties.org.quartz.jobStore.isClustered=truespring.quartz.properties.org.quartz.jobStore.clusterCheckinInterval=10000spring.quartz.properties.org.quartz.jobStore.useProperties=falsespring.quartz.properties.org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPoolspring.quartz.properties.org.quartz.threadPool.threadCount=10spring.quartz.properties.org.quartz.threadPool.threadPriority=5spring.quartz.properties.org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=truespring.quartz.job-store-type=jdbc4. 下载SQL脚步,导入到数据库

去官网下载:http://www.quartz-scheduler.org/downloads/

根据版本不同,脚步一般在这2个地方

/docs/dbTablesorg/quartz/impl/jdbcjobstore

5. Job中实现业务

@Configuration@DisallowConcurrentExecutionpublic class PushOrderInfoJob extends QuartzJobBean { private static final Logger logger = LoggerFactory.getLogger(PushOrderInfoJob.class); /** * 这儿写业务 **/ @Override protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException { logger.info("-----[PushOrderInfoJob]begin----"); logger.info("-----[PushOrderInfoJob]end----"); }}

6.如果你觉得好,可以使用我发布到iOS APP Store的产品

e8824e4aaad19609fb5b0ce13b94c11d.png
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值