之前以为quartz只能进行配置定时任务,原来还可以进行动态地管理,进行添加任务、修改定时时间和删除任务。这样的话,定时任务的实现就比较灵活了。下面是主要的实现:
首先是要配置一个基础的定时任务,通过spring进行注入:
在applicationContext.xml文件中添加一行:<import resource="quartz.xml" />
新建文件quartz.xml:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> <!-- 这个类用来做需要完成的业务--> <bean id="myJob" class="com.hello.quartz.BlankJob"></bean> <!-- 定时任务 --> <!-- 定义调用对象和调用对象的方法,这个配置和普通的一样的,id是JobDetail的名字 --> <bean id="jobtask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> <!-- 调用的类 --> <property name="targetObject" ref="myJob" /> <!-- 调用类中的方法 --> <property name="targetMethod" value="doNothing" /> <!-- 是否并发 --> <property name ="concurrent" value ="false" /> </bean> <!-- 定义触发时间 ,这边就不同了,这里必须将时间设置成无限长,因为我们要去读取数据库的时间来做为定时器的触发时间--> <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean "> <property name="jobDetail" ref="jobtask" /> <!-- cron表达式 --> <property name="cronExpression" value="0 0 0 * * ?" /> </bean> <!-- 总管理类 如果将lazy-init='false'那么容器启动就会执行调度程序 --> <bean id="startQuertz" lazy-init="true" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list> <ref bean="cronTrigger" /> </list> </property> </bean> <!--这个类是用来设置触发时间的, startJobs方法启动调度容器,然后按照上面触发器每隔1s执行所配置的myJob2.doSomething()方法 --> <bean id="quartzManager" class="com.hello.quartz.QuartzManager" lazy-init="false" init-method="startJobs" > <!--这个对象一定要注入,这样类才能进行管理,还有在类型要用get set方法,不然会报错。--> <property name="scheduler" ref="startQuertz" /> </bean> </beans>
新建类BlankJob.java和QuartzManager.java
public class BlankJob implements Job{ protected static final Logger log = Logger.getLogger(BlankJob.class); @Override public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException { System.out.println(new Date() + ": blank job doing something..."); } public void doNothing(){ System.out.println(new Date() + ": blank job doing nothing..."); } }
配置好BlankJob,项目启动后就能进行通过QuartzManager类定时任务的管理。
import org.quartz.CronScheduleBuilder; import org.quartz.CronTrigger; import org.quartz.JobBuilder; import org.quartz.JobDetail; import org.quartz.JobKey; import org.quartz.Scheduler; import org.quartz.Trigger; import org.quartz.TriggerBuilder; import org.quartz.TriggerKey; public class QuartzManager { private Scheduler scheduler; public Scheduler getScheduler() { return scheduler; } public void setScheduler(Scheduler scheduler) { this.scheduler = scheduler; } /** * 功能: 添加一个定时任务 * @param jobName 任务名 * @param jobGroupName 任务组名 * @param triggerName 触发器名 * @param triggerGroupName 触发器组名 * @param jobClass 任务的类类型 eg:TimedMassJob.class * @param cron 时间设置 表达式,参考quartz说明文档 */ public void addJob(String jobName, String jobGroupName, String triggerName, String triggerGroupName, Class jobClass, String cron,Object...objects) { try { // 任务名,任务组,任务执行类 JobDetail jobDetail= JobBuilder.newJob(jobClass).withIdentity(jobName, jobGroupName).build(); // 触发器 if(objects!=null){ for (int i = 0; i < objects.length; i++) { //该数据可以通过Job中的JobDataMap dataMap = context.getJobDetail().getJobDataMap();来进行参数传递值 jobDetail.getJobDataMap().put("data"+(i+1), objects[i]); } } TriggerBuilder<Trigger> triggerBuilder = TriggerBuilder.newTrigger(); // 触发器名,触发器组 triggerBuilder.withIdentity(triggerName,triggerGroupName); triggerBuilder.startNow(); // 触发器时间设定 triggerBuilder.withSchedule(CronScheduleBuilder.cronSchedule(cron)); // 创建Trigger对象 CronTrigger trigger = (CronTrigger) triggerBuilder.build(); // 调度容器设置JobDetail和Trigger scheduler.scheduleJob(jobDetail, trigger); // 启动 /*if (!scheduler.isShutdown()) { scheduler.start(); }*/ } catch (Exception e) { throw new RuntimeException(e); } } /** * 功能:修改一个任务的触发时间 * @param jobName * @param jobGroupName * @param triggerName 触发器名 * @param triggerGroupName 触发器组名 * @param cron 时间设置,参考quartz说明文档 */ public void modifyJobTime(String jobName, String jobGroupName, String triggerName, String triggerGroupName, String cron) { try { TriggerKey triggerKey = TriggerKey.triggerKey(triggerName, triggerGroupName); CronTrigger trigger = (CronTrigger) scheduler.getTrigger(triggerKey); if (trigger == null) { return; } String oldTime = trigger.getCronExpression(); if (!oldTime.equalsIgnoreCase(cron)) { // 触发器 TriggerBuilder<Trigger> triggerBuilder = TriggerBuilder.newTrigger(); // 触发器名,触发器组 triggerBuilder.withIdentity(triggerName, triggerGroupName); triggerBuilder.startNow(); // 触发器时间设定 triggerBuilder.withSchedule(CronScheduleBuilder.cronSchedule(cron)); // 创建Trigger对象 trigger = (CronTrigger) triggerBuilder.build(); // 方式一 :修改一个任务的触发时间 scheduler.rescheduleJob(triggerKey, trigger); } } catch (Exception e) { throw new RuntimeException(e); } } /** * 功能: 移除一个任务 * @param jobName * @param jobGroupName * @param triggerName * @param triggerGroupName */ public void removeJob(String jobName, String jobGroupName,String triggerName, String triggerGroupName) { try { TriggerKey triggerKey = TriggerKey.triggerKey(triggerName,triggerGroupName); // 停止触发器 scheduler.pauseTrigger(triggerKey); // 移除触发器 scheduler.unscheduleJob(triggerKey); // 删除任务 scheduler.deleteJob(JobKey.jobKey(jobName,jobGroupName)); } catch (Exception e) { throw new RuntimeException(e); } } /** * * 功能:启动所有定时任务 */ public void startJobs() { try { scheduler.start(); } catch (Exception e) { throw new RuntimeException(e); } } /** * 功能:关闭所有定时任务 */ public void shutdownJobs() { try { if (!scheduler.isShutdown()) { scheduler.shutdown(); } } catch (Exception e) { throw new RuntimeException(e); } } }
最后可以从数据库或文件中获取已经配置的定时任务进行初始化加载,项目运行过程中也可以对定时任务进行管理。通过xml的配置,QuartzManager类已经被spring所管理,
这样通过spring上下文都可以拿到这个类,获取的方法如下:
package com.hello.util; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.stereotype.Component; @Component public class SpringContextUtil implements ApplicationContextAware { // Spring应用上下文环境 public static ApplicationContext applicationContext; /** * 实现ApplicationContextAware接口的回调方法。设置上下文环境 * * @param applicationContext */ @Override public void setApplicationContext(ApplicationContext applicationContext) { SpringContextUtil.applicationContext = applicationContext; } /** * @return ApplicationContext */ public static ApplicationContext getApplicationContext() { return applicationContext; } /** * 获取对象 * * @param name * @return Object * @throws BeansException */ public static Object getBean(String name) throws BeansException { return applicationContext.getBean(name); } }
初始化定时任务的方法:(修改定时时间和删除的方法添加到具体的业务逻辑中,获取quartzManager的方法可以参考init)
package com.hello.quartz; import com.kaiyuan.mod.entity.ModQuartz; import com.kaiyuan.mod.service.ModQuartzService; import com.kaiyuan.mod.util.SpringContextUtil; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationListener; import org.springframework.context.event.ContextRefreshedEvent; import org.springframework.stereotype.Component; import java.util.List; @Component public class ModJobManager implements ApplicationListener<ContextRefreshedEvent> { protected static final Logger log = Logger.getLogger(DailyDutyNotifyJob.class); @Autowired private ModQuartzService modQuartzService; public void init(){ log.info("读取所有设置了时间的机构推送设置!"); List<ModQuartz> jobs = modQuartzService.listAll(); QuartzManager quartzManager = (QuartzManager) SpringContextUtil.getBean("quartzManager"); for (ModQuartz job:jobs) { String jobName = job.getName(); quartzManager.addJob(jobName,jobName,jobName,jobName,A.class,QuartzCronDateUtils.getCron(job.getExecuteDate()),job); } } @Override public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) { init(); } }
具体执行方法的A类,这样的类可以添加任意多个,只要在添加任务的时候传入对应类名的class即可。
package com.hello.quartz; public class A implements Job { @Override public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException { log.info("EXE A Job"); } }
时间格式转换的工具类:
package com.hello.quartz; import java.text.SimpleDateFormat; import java.util.Date; public class QuartzCronDateUtils { /*** * 功能描述:日期转换cron表达式时间格式 * @param date * @param dateFormat : e.g:yyyy-MM-dd HH:mm:ss * @return */ public static String formatDateByPattern(Date date,String dateFormat){ SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); String formatTimeStr = null; if (date != null) { formatTimeStr = sdf.format(date); } return formatTimeStr; } /*** * convert Date to cron ,eg. "14 01 17 22 07 ? 2017" * @param date:时间点 * @return */ public static String getCron(java.util.Date date){ String dateFormat="ss mm HH * * ?"; return formatDateByPattern(date,dateFormat); } }
最后还有需要引入的jar包有:quartz-2.2.3.jar,quartz-jobs-2.2.3.jar,spring-context-support-4.0.6.RELEASE.jar,
spring框架采用3.1,引入相关jar即可。如果不引入spring-context-support-4.0.6.RELEASE.jar运行的时候会报错。