ÎļþÃû´Ó ruoyi/src/main/java/com/ruoyi/common/utils/job/ScheduleUtils.java ÐÞ¸Ä |
| | |
| | | package com.ruoyi.common.utils.job; |
| | | |
| | | import org.quartz.CronScheduleBuilder; |
| | | import org.quartz.CronTrigger; |
| | | import org.quartz.Job; |
| | | import org.quartz.JobBuilder; |
| | | 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 com.ruoyi.common.constant.ScheduleConstants; |
| | | import com.ruoyi.common.exception.job.TaskException; |
| | | import com.ruoyi.common.exception.job.TaskException.Code; |
| | | import com.ruoyi.project.monitor.domain.SysJob; |
| | | |
| | | /** |
| | | * 宿¶ä»»å¡å·¥å
·ç±» |
| | | * |
| | | * @author ruoyi |
| | | * |
| | | */ |
| | | public class ScheduleUtils |
| | | { |
| | | /** |
| | | * å¾å°quartzä»»å¡ç±» |
| | | * |
| | | * @param sysJob æ§è¡è®¡å |
| | | * @return å
·ä½æ§è¡ä»»å¡ç±» |
| | | */ |
| | | private static Class<? extends Job> getQuartzJobClass(SysJob sysJob) |
| | | { |
| | | boolean isConcurrent = "0".equals(sysJob.getConcurrent()); |
| | | return isConcurrent ? QuartzJobExecution.class : QuartzDisallowConcurrentExecution.class; |
| | | } |
| | | |
| | | /** |
| | | * æå»ºä»»å¡è§¦å对象 |
| | | */ |
| | | public static TriggerKey getTriggerKey(Long jobId, String jobGroup) |
| | | { |
| | | return TriggerKey.triggerKey(ScheduleConstants.TASK_CLASS_NAME + jobId, jobGroup); |
| | | } |
| | | |
| | | /** |
| | | * æå»ºä»»å¡é®å¯¹è±¡ |
| | | */ |
| | | public static JobKey getJobKey(Long jobId, String jobGroup) |
| | | { |
| | | return JobKey.jobKey(ScheduleConstants.TASK_CLASS_NAME + jobId, jobGroup); |
| | | } |
| | | |
| | | /** |
| | | * åå»ºå®æ¶ä»»å¡ |
| | | */ |
| | | public static void createScheduleJob(Scheduler scheduler, SysJob job) throws SchedulerException, TaskException |
| | | { |
| | | Class<? extends Job> jobClass = getQuartzJobClass(job); |
| | | // æå»ºjobä¿¡æ¯ |
| | | Long jobId = job.getJobId(); |
| | | String jobGroup = job.getJobGroup(); |
| | | JobDetail jobDetail = JobBuilder.newJob(jobClass).withIdentity(getJobKey(jobId, jobGroup)).build(); |
| | | |
| | | // 表达å¼è°åº¦æå»ºå¨ |
| | | CronScheduleBuilder cronScheduleBuilder = CronScheduleBuilder.cronSchedule(job.getCronExpression()); |
| | | cronScheduleBuilder = handleCronScheduleMisfirePolicy(job, cronScheduleBuilder); |
| | | |
| | | // ææ°çcronExpressionè¡¨è¾¾å¼æå»ºä¸ä¸ªæ°çtrigger |
| | | CronTrigger trigger = TriggerBuilder.newTrigger().withIdentity(getTriggerKey(jobId, jobGroup)) |
| | | .withSchedule(cronScheduleBuilder).build(); |
| | | |
| | | // æ¾å
¥åæ°ï¼è¿è¡æ¶çæ¹æ³å¯ä»¥è·å |
| | | jobDetail.getJobDataMap().put(ScheduleConstants.TASK_PROPERTIES, job); |
| | | |
| | | // 夿æ¯å¦åå¨ |
| | | if (scheduler.checkExists(getJobKey(jobId, jobGroup))) |
| | | { |
| | | // 鲿¢å建æ¶å卿°æ®é®é¢ å
ç§»é¤ï¼ç¶å卿§è¡å建æä½ |
| | | scheduler.deleteJob(getJobKey(jobId, jobGroup)); |
| | | } |
| | | |
| | | scheduler.scheduleJob(jobDetail, trigger); |
| | | |
| | | // æåä»»å¡ |
| | | if (job.getStatus().equals(ScheduleConstants.Status.PAUSE.getValue())) |
| | | { |
| | | scheduler.pauseJob(ScheduleUtils.getJobKey(jobId, jobGroup)); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * è®¾ç½®å®æ¶ä»»å¡çç¥ |
| | | */ |
| | | public static CronScheduleBuilder handleCronScheduleMisfirePolicy(SysJob job, CronScheduleBuilder cb) |
| | | 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: |
| | | throw new TaskException("The task misfire policy '" + job.getMisfirePolicy() |
| | | + "' cannot be used in cron schedule tasks", Code.CONFIG_ERROR); |
| | | } |
| | | } |
| | | } |
| | | package com.ruoyi.quartz.util;
|
| | |
|
| | | import org.quartz.CronScheduleBuilder;
|
| | | import org.quartz.CronTrigger;
|
| | | import org.quartz.Job;
|
| | | import org.quartz.JobBuilder;
|
| | | 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 com.ruoyi.common.constant.ScheduleConstants;
|
| | | import com.ruoyi.common.exception.job.TaskException;
|
| | | import com.ruoyi.common.exception.job.TaskException.Code;
|
| | | import com.ruoyi.quartz.domain.SysJob;
|
| | |
|
| | | /**
|
| | | * 宿¶ä»»å¡å·¥å
·ç±»
|
| | | * |
| | | * @author ruoyi
|
| | | *
|
| | | */
|
| | | public class ScheduleUtils
|
| | | {
|
| | | /**
|
| | | * å¾å°quartzä»»å¡ç±»
|
| | | *
|
| | | * @param sysJob æ§è¡è®¡å
|
| | | * @return å
·ä½æ§è¡ä»»å¡ç±»
|
| | | */
|
| | | private static Class<? extends Job> getQuartzJobClass(SysJob sysJob)
|
| | | {
|
| | | boolean isConcurrent = "0".equals(sysJob.getConcurrent());
|
| | | return isConcurrent ? QuartzJobExecution.class : QuartzDisallowConcurrentExecution.class;
|
| | | }
|
| | |
|
| | | /**
|
| | | * æå»ºä»»å¡è§¦å对象
|
| | | */
|
| | | public static TriggerKey getTriggerKey(Long jobId, String jobGroup)
|
| | | {
|
| | | return TriggerKey.triggerKey(ScheduleConstants.TASK_CLASS_NAME + jobId, jobGroup);
|
| | | }
|
| | |
|
| | | /**
|
| | | * æå»ºä»»å¡é®å¯¹è±¡
|
| | | */
|
| | | public static JobKey getJobKey(Long jobId, String jobGroup)
|
| | | {
|
| | | return JobKey.jobKey(ScheduleConstants.TASK_CLASS_NAME + jobId, jobGroup);
|
| | | }
|
| | |
|
| | | /**
|
| | | * åå»ºå®æ¶ä»»å¡
|
| | | */
|
| | | public static void createScheduleJob(Scheduler scheduler, SysJob job) throws SchedulerException, TaskException
|
| | | {
|
| | | Class<? extends Job> jobClass = getQuartzJobClass(job);
|
| | | // æå»ºjobä¿¡æ¯
|
| | | Long jobId = job.getJobId();
|
| | | String jobGroup = job.getJobGroup();
|
| | | JobDetail jobDetail = JobBuilder.newJob(jobClass).withIdentity(getJobKey(jobId, jobGroup)).build();
|
| | |
|
| | | // 表达å¼è°åº¦æå»ºå¨
|
| | | CronScheduleBuilder cronScheduleBuilder = CronScheduleBuilder.cronSchedule(job.getCronExpression());
|
| | | cronScheduleBuilder = handleCronScheduleMisfirePolicy(job, cronScheduleBuilder);
|
| | |
|
| | | // ææ°çcronExpressionè¡¨è¾¾å¼æå»ºä¸ä¸ªæ°çtrigger
|
| | | CronTrigger trigger = TriggerBuilder.newTrigger().withIdentity(getTriggerKey(jobId, jobGroup))
|
| | | .withSchedule(cronScheduleBuilder).build();
|
| | |
|
| | | // æ¾å
¥åæ°ï¼è¿è¡æ¶çæ¹æ³å¯ä»¥è·å
|
| | | jobDetail.getJobDataMap().put(ScheduleConstants.TASK_PROPERTIES, job);
|
| | |
|
| | | // 夿æ¯å¦åå¨
|
| | | if (scheduler.checkExists(getJobKey(jobId, jobGroup)))
|
| | | {
|
| | | // 鲿¢å建æ¶å卿°æ®é®é¢ å
ç§»é¤ï¼ç¶å卿§è¡å建æä½
|
| | | scheduler.deleteJob(getJobKey(jobId, jobGroup));
|
| | | }
|
| | |
|
| | | scheduler.scheduleJob(jobDetail, trigger);
|
| | |
|
| | | // æåä»»å¡
|
| | | if (job.getStatus().equals(ScheduleConstants.Status.PAUSE.getValue()))
|
| | | {
|
| | | scheduler.pauseJob(ScheduleUtils.getJobKey(jobId, jobGroup));
|
| | | }
|
| | | }
|
| | |
|
| | | /**
|
| | | * è®¾ç½®å®æ¶ä»»å¡çç¥
|
| | | */
|
| | | public static CronScheduleBuilder handleCronScheduleMisfirePolicy(SysJob job, CronScheduleBuilder cb)
|
| | | 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:
|
| | | throw new TaskException("The task misfire policy '" + job.getMisfirePolicy()
|
| | | + "' cannot be used in cron schedule tasks", Code.CONFIG_ERROR);
|
| | | }
|
| | | }
|
| | | }
|