2018-10-07 14:16:47 +08:00
|
|
|
package com.ruoyi.quartz.util;
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
import org.quartz.CronScheduleBuilder;
|
|
|
|
|
import org.quartz.CronTrigger;
|
|
|
|
|
import org.quartz.JobBuilder;
|
|
|
|
|
import org.quartz.JobDataMap;
|
|
|
|
|
import org.quartz.JobDetail;
|
|
|
|
|
import org.quartz.JobKey;
|
|
|
|
|
import org.quartz.Scheduler;
|
|
|
|
|
import org.quartz.SchedulerException;
|
|
|
|
|
import org.quartz.TriggerBuilder;
|
|
|
|
|
import org.quartz.TriggerKey;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import com.ruoyi.common.constant.ScheduleConstants;
|
2018-07-20 17:21:43 +08:00
|
|
|
import com.ruoyi.common.exception.job.TaskException;
|
|
|
|
|
import com.ruoyi.common.exception.job.TaskException.Code;
|
2018-10-07 14:16:47 +08:00
|
|
|
import com.ruoyi.quartz.domain.SysJob;
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 定时任务工具类
|
|
|
|
|
*
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public class ScheduleUtils
|
|
|
|
|
{
|
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(ScheduleUtils.class);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取触发器key
|
|
|
|
|
*/
|
|
|
|
|
public static TriggerKey getTriggerKey(Long jobId)
|
|
|
|
|
{
|
2018-07-20 17:21:43 +08:00
|
|
|
return TriggerKey.triggerKey(ScheduleConstants.TASK_CLASS_NAME + jobId);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取jobKey
|
|
|
|
|
*/
|
|
|
|
|
public static JobKey getJobKey(Long jobId)
|
|
|
|
|
{
|
2018-07-20 17:21:43 +08:00
|
|
|
return JobKey.jobKey(ScheduleConstants.TASK_CLASS_NAME + jobId);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取表达式触发器
|
|
|
|
|
*/
|
|
|
|
|
public static CronTrigger getCronTrigger(Scheduler scheduler, Long jobId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return (CronTrigger) scheduler.getTrigger(getTriggerKey(jobId));
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("getCronTrigger 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建定时任务
|
|
|
|
|
*/
|
2018-10-07 14:16:47 +08:00
|
|
|
public static void createScheduleJob(Scheduler scheduler, SysJob job)
|
2018-07-09 08:44:52 +08:00
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// 构建job信息
|
|
|
|
|
JobDetail jobDetail = JobBuilder.newJob(ScheduleJob.class).withIdentity(getJobKey(job.getJobId())).build();
|
|
|
|
|
|
|
|
|
|
// 表达式调度构建器
|
2018-07-20 17:21:43 +08:00
|
|
|
CronScheduleBuilder cronScheduleBuilder = CronScheduleBuilder.cronSchedule(job.getCronExpression());
|
|
|
|
|
cronScheduleBuilder = handleCronScheduleMisfirePolicy(job, cronScheduleBuilder);
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
// 按新的cronExpression表达式构建一个新的trigger
|
2018-10-07 14:16:47 +08:00
|
|
|
CronTrigger trigger = TriggerBuilder.newTrigger().withIdentity(getTriggerKey(job.getJobId()))
|
|
|
|
|
.withSchedule(cronScheduleBuilder).build();
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
// 放入参数,运行时的方法可以获取
|
2018-07-20 17:21:43 +08:00
|
|
|
jobDetail.getJobDataMap().put(ScheduleConstants.TASK_PROPERTIES, job);
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
scheduler.scheduleJob(jobDetail, trigger);
|
|
|
|
|
|
|
|
|
|
// 暂停任务
|
|
|
|
|
if (job.getStatus().equals(ScheduleConstants.Status.PAUSE.getValue()))
|
|
|
|
|
{
|
|
|
|
|
pauseJob(scheduler, job.getJobId());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("createScheduleJob 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
2018-07-20 17:21:43 +08:00
|
|
|
catch (TaskException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("createScheduleJob 异常:", e);
|
2018-07-20 17:21:43 +08:00
|
|
|
}
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新定时任务
|
|
|
|
|
*/
|
2018-10-07 14:16:47 +08:00
|
|
|
public static void updateScheduleJob(Scheduler scheduler, SysJob job)
|
2018-07-09 08:44:52 +08:00
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
TriggerKey triggerKey = getTriggerKey(job.getJobId());
|
|
|
|
|
|
|
|
|
|
// 表达式调度构建器
|
2018-07-20 17:21:43 +08:00
|
|
|
CronScheduleBuilder cronScheduleBuilder = CronScheduleBuilder.cronSchedule(job.getCronExpression());
|
|
|
|
|
cronScheduleBuilder = handleCronScheduleMisfirePolicy(job, cronScheduleBuilder);
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
CronTrigger trigger = getCronTrigger(scheduler, job.getJobId());
|
|
|
|
|
|
|
|
|
|
// 按新的cronExpression表达式重新构建trigger
|
2018-07-20 17:21:43 +08:00
|
|
|
trigger = trigger.getTriggerBuilder().withIdentity(triggerKey).withSchedule(cronScheduleBuilder).build();
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
// 参数
|
2018-07-20 17:21:43 +08:00
|
|
|
trigger.getJobDataMap().put(ScheduleConstants.TASK_PROPERTIES, job);
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
scheduler.rescheduleJob(triggerKey, trigger);
|
|
|
|
|
|
|
|
|
|
// 暂停任务
|
|
|
|
|
if (job.getStatus().equals(ScheduleConstants.Status.PAUSE.getValue()))
|
|
|
|
|
{
|
|
|
|
|
pauseJob(scheduler, job.getJobId());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("SchedulerException 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
2018-07-20 17:21:43 +08:00
|
|
|
catch (TaskException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("SchedulerException 异常:", e);
|
2018-07-20 17:21:43 +08:00
|
|
|
}
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 立即执行任务
|
|
|
|
|
*/
|
2018-10-07 14:16:47 +08:00
|
|
|
public static int run(Scheduler scheduler, SysJob job)
|
2018-07-09 08:44:52 +08:00
|
|
|
{
|
|
|
|
|
int rows = 0;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// 参数
|
|
|
|
|
JobDataMap dataMap = new JobDataMap();
|
2018-07-20 17:21:43 +08:00
|
|
|
dataMap.put(ScheduleConstants.TASK_PROPERTIES, job);
|
2018-07-09 08:44:52 +08:00
|
|
|
|
|
|
|
|
scheduler.triggerJob(getJobKey(job.getJobId()), dataMap);
|
|
|
|
|
rows = 1;
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("run 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
return rows;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 暂停任务
|
|
|
|
|
*/
|
|
|
|
|
public static void pauseJob(Scheduler scheduler, Long jobId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
scheduler.pauseJob(getJobKey(jobId));
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("pauseJob 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 恢复任务
|
|
|
|
|
*/
|
|
|
|
|
public static void resumeJob(Scheduler scheduler, Long jobId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
scheduler.resumeJob(getJobKey(jobId));
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("resumeJob 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除定时任务
|
|
|
|
|
*/
|
|
|
|
|
public static void deleteScheduleJob(Scheduler scheduler, Long jobId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
scheduler.deleteJob(getJobKey(jobId));
|
|
|
|
|
}
|
|
|
|
|
catch (SchedulerException e)
|
|
|
|
|
{
|
2018-07-26 12:37:33 +08:00
|
|
|
log.error("deleteScheduleJob 异常:", e);
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|
|
|
|
|
}
|
2018-07-20 17:21:43 +08:00
|
|
|
|
2018-10-07 14:16:47 +08:00
|
|
|
public static CronScheduleBuilder handleCronScheduleMisfirePolicy(SysJob job, CronScheduleBuilder cb)
|
2018-07-20 17:21:43 +08:00
|
|
|
throws TaskException
|
|
|
|
|
{
|
|
|
|
|
switch (job.getMisfirePolicy())
|
|
|
|
|
{
|
|
|
|
|
case ScheduleConstants.MISFIRE_DEFAULT:
|
|
|
|
|
return cb;
|
|
|
|
|
case ScheduleConstants.MISFIRE_IGNORE_MISFIRES:
|
|
|
|
|
return cb.withMisfireHandlingInstructionIgnoreMisfires();
|
|
|
|
|
case ScheduleConstants.MISFIRE_FIRE_AND_PROCEED:
|
|
|
|
|
return cb.withMisfireHandlingInstructionFireAndProceed();
|
|
|
|
|
case ScheduleConstants.MISFIRE_DO_NOTHING:
|
|
|
|
|
return cb.withMisfireHandlingInstructionDoNothing();
|
|
|
|
|
default:
|
2018-10-03 23:11:09 +08:00
|
|
|
throw new TaskException("The task misfire policy '" + job.getMisfirePolicy() + "' cannot be used in cron schedule tasks", Code.CONFIG_ERROR);
|
2018-07-20 17:21:43 +08:00
|
|
|
}
|
|
|
|
|
}
|
2018-07-09 08:44:52 +08:00
|
|
|
}
|