一、版本说明

spring3.1以下的版本必须使用quartz1.x系列,3.1以上的版本才支持quartz 2.x,不然会出错。

原因:spring对于quartz的支持实现,org.springframework.scheduling.quartz.CronTriggerBean继承了org.quartz.CronTrigger,在quartz1.x系列中org.quartz.CronTrigger是个类,而在quartz2.x系列中org.quartz.CronTrigger变成了接口,从而造成无法用spring的方式配置quartz的触发器(trigger)

此示例所选版本:spring版本号3.0.7.RELEASE,quartz版本1.8.6

二、添加jar包

我的是maven工程,pom.xml相关配置如下:

  1. <properties>
  2. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  3. <spring.version>3.0.7.RELEASE</spring.version>
  4. <quartz.version>1.8.6</quartz.version>
  5. </properties>
  1.      <dependency>
  2. <groupId>org.springframework</groupId>
  3. <artifactId>spring-context</artifactId>
  4. <version>${spring.version}</version>
  5. <exclusions>
  6. <!-- Exclude Commons Logging in favor of SLF4j -->
  7. <exclusion>
  8. <groupId>commons-logging</groupId>
  9. <artifactId>commons-logging</artifactId>
  10. </exclusion>
  11. </exclusions>
  12. </dependency>
  13.  
  14. <dependency><!--3.0.7没这个包 -->
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-context-support</artifactId>
  17. <version>${spring.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-webmvc</artifactId>
  22. <version>${spring.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-orm</artifactId>
  27. <version>${spring.version}</version>
  28. <type>jar</type>
  29. <scope>compile</scope>
  30. </dependency>
  31.  
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-test</artifactId>
  35. <version>${spring.version}</version>
  36. <type>jar</type>
  37. <scope>test</scope>
  38. </dependency>
  1. <dependency>
  2. <groupId>org.quartz-scheduler</groupId>
  3. <artifactId>quartz</artifactId>
  4. <version>${quartz.version}</version>
  5. </dependency>

三、整合实现

1、spring配置

spring只需要添加quartz调度工厂bean就可以了

  1. <bean id="schedulerFactoryBean" class="org.springframework.scheduling.quartz.SchedulerFactoryBean" />

2、定时器工作类实现

定义定时器作业类,该类继承自job类

  1. package com.ld.nhmz.quartz;
  2.  
  3. import java.text.SimpleDateFormat;
  4. import java.util.Date;
  5.  
  6. import org.quartz.Job;
  7. import org.quartz.JobExecutionContext;
  8. import org.quartz.JobExecutionException;
  9.  
  10. /**
  11. * quartz示例定时器类
  12. *
  13. * @author Administrator
  14. *
  15. */
  16. public class QuartzJobExample implements Job {
  17. @Override
  18. public void execute(JobExecutionContext arg0) throws JobExecutionException {
  19. System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + "★★★★★★★★★★★");
  20. }
  21. }

定义定时器管理类

  1. package com.ld.nhmz.quartz;
  2.  
  3. import org.quartz.CronTrigger;
  4. import org.quartz.JobDetail;
  5. import org.quartz.Scheduler;
  6.  
  7. /**
  8. * Quartz调度管理器
  9. *
  10. * @author Administrator
  11. *
  12. */
  13. public class QuartzManager {
  14. private static String JOB_GROUP_NAME = "EXTJWEB_JOBGROUP_NAME";
  15. private static String TRIGGER_GROUP_NAME = "EXTJWEB_TRIGGERGROUP_NAME";
  16.  
  17. /**
  18. * @Description: 添加一个定时任务,使用默认的任务组名,触发器名,触发器组名
  19. *
  20. * @param sched
  21. * 调度器
  22. *
  23. * @param jobName
  24. * 任务名
  25. * @param cls
  26. * 任务
  27. * @param time
  28. * 时间设置,参考quartz说明文档
  29. *
  30. * @Title: QuartzManager.java
  31. */
  32. public static void addJob(Scheduler sched, String jobName, @SuppressWarnings("rawtypes") Class cls, String time) {
  33. try {
  34. JobDetail jobDetail = new JobDetail(jobName, JOB_GROUP_NAME, cls);// 任务名,任务组,任务执行类
  35. // 触发器
  36. CronTrigger trigger = new CronTrigger(jobName, TRIGGER_GROUP_NAME);// 触发器名,触发器组
  37. trigger.setCronExpression(time);// 触发器时间设定
  38. sched.scheduleJob(jobDetail, trigger);
  39. // 启动
  40. if (!sched.isShutdown()) {
  41. sched.start();
  42. }
  43. } catch (Exception e) {
  44. throw new RuntimeException(e);
  45. }
  46. }
  47.  
  48. /**
  49. * @Description: 添加一个定时任务
  50. *
  51. * @param sched
  52. * 调度器
  53. *
  54. * @param jobName
  55. * 任务名
  56. * @param jobGroupName
  57. * 任务组名
  58. * @param triggerName
  59. * 触发器名
  60. * @param triggerGroupName
  61. * 触发器组名
  62. * @param jobClass
  63. * 任务
  64. * @param time
  65. * 时间设置,参考quartz说明文档
  66. *
  67. * @Title: QuartzManager.java
  68. */
  69. public static void addJob(Scheduler sched, String jobName, String jobGroupName, String triggerName, String triggerGroupName, @SuppressWarnings("rawtypes") Class jobClass, String time) {
  70. try {
  71. JobDetail jobDetail = new JobDetail(jobName, jobGroupName, jobClass);// 任务名,任务组,任务执行类
  72. // 触发器
  73. CronTrigger trigger = new CronTrigger(triggerName, triggerGroupName);// 触发器名,触发器组
  74. trigger.setCronExpression(time);// 触发器时间设定
  75. sched.scheduleJob(jobDetail, trigger);
  76. } catch (Exception e) {
  77. throw new RuntimeException(e);
  78. }
  79. }
  80.  
  81. /**
  82. * @Description: 修改一个任务的触发时间(使用默认的任务组名,触发器名,触发器组名)
  83. *
  84. * @param sched
  85. * 调度器
  86. * @param jobName
  87. * @param time
  88. *
  89. * @Title: QuartzManager.java
  90. */
  91. @SuppressWarnings("rawtypes")
  92. public static void modifyJobTime(Scheduler sched, String jobName, String time) {
  93. try {
  94. CronTrigger trigger = (CronTrigger) sched.getTrigger(jobName, TRIGGER_GROUP_NAME);
  95. if (trigger == null) {
  96. return;
  97. }
  98. String oldTime = trigger.getCronExpression();
  99. if (!oldTime.equalsIgnoreCase(time)) {
  100. JobDetail jobDetail = sched.getJobDetail(jobName, JOB_GROUP_NAME);
  101. Class objJobClass = jobDetail.getJobClass();
  102. removeJob(sched, jobName);
  103. addJob(sched, jobName, objJobClass, time);
  104. }
  105. } catch (Exception e) {
  106. throw new RuntimeException(e);
  107. }
  108. }
  109.  
  110. /**
  111. * @Description: 修改一个任务的触发时间
  112. *
  113. * @param sched
  114. * 调度器 *
  115. * @param sched
  116. * 调度器
  117. * @param triggerName
  118. * @param triggerGroupName
  119. * @param time
  120. *
  121. * @Title: QuartzManager.java
  122. */
  123. public static void modifyJobTime(Scheduler sched, String triggerName, String triggerGroupName, String time) {
  124. try {
  125. CronTrigger trigger = (CronTrigger) sched.getTrigger(triggerName, triggerGroupName);
  126. if (trigger == null) {
  127. return;
  128. }
  129. String oldTime = trigger.getCronExpression();
  130. if (!oldTime.equalsIgnoreCase(time)) {
  131. CronTrigger ct = (CronTrigger) trigger;
  132. // 修改时间
  133. ct.setCronExpression(time);
  134. // 重启触发器
  135. sched.resumeTrigger(triggerName, triggerGroupName);
  136. }
  137. } catch (Exception e) {
  138. throw new RuntimeException(e);
  139. }
  140. }
  141.  
  142. /**
  143. * @Description: 移除一个任务(使用默认的任务组名,触发器名,触发器组名)
  144. *
  145. * @param sched
  146. * 调度器
  147. * @param jobName
  148. *
  149. * @Title: QuartzManager.java
  150. */
  151. public static void removeJob(Scheduler sched, String jobName) {
  152. try {
  153. sched.pauseTrigger(jobName, TRIGGER_GROUP_NAME);// 停止触发器
  154. sched.unscheduleJob(jobName, TRIGGER_GROUP_NAME);// 移除触发器
  155. sched.deleteJob(jobName, JOB_GROUP_NAME);// 删除任务
  156. } catch (Exception e) {
  157. throw new RuntimeException(e);
  158. }
  159. }
  160.  
  161. /**
  162. * @Description: 移除一个任务
  163. *
  164. * @param sched
  165. * 调度器
  166. * @param jobName
  167. * @param jobGroupName
  168. * @param triggerName
  169. * @param triggerGroupName
  170. *
  171. * @Title: QuartzManager.java
  172. */
  173. public static void removeJob(Scheduler sched, String jobName, String jobGroupName, String triggerName, String triggerGroupName) {
  174. try {
  175. sched.pauseTrigger(triggerName, triggerGroupName);// 停止触发器
  176. sched.unscheduleJob(triggerName, triggerGroupName);// 移除触发器
  177. sched.deleteJob(jobName, jobGroupName);// 删除任务
  178. } catch (Exception e) {
  179. throw new RuntimeException(e);
  180. }
  181. }
  182.  
  183. /**
  184. * @Description:启动所有定时任务
  185. *
  186. * @param sched
  187. * 调度器
  188. *
  189. * @Title: QuartzManager.java
  190. */
  191. public static void startJobs(Scheduler sched) {
  192. try {
  193. sched.start();
  194. } catch (Exception e) {
  195. throw new RuntimeException(e);
  196. }
  197. }
  198.  
  199. /**
  200. * @Description:关闭所有定时任务
  201. *
  202. *
  203. * @param sched
  204. * 调度器
  205. *
  206. *
  207. * @Title: QuartzManager.java
  208. */
  209. public static void shutdownJobs(Scheduler sched) {
  210. try {
  211. if (!sched.isShutdown()) {
  212. sched.shutdown();
  213. }
  214. } catch (Exception e) {
  215. throw new RuntimeException(e);
  216. }
  217. }
  218. }

测试代码,这里SchedulerFactory没有使用spring中配置的bean,而是new出来的,做测试用

  1. package com.ld.nhmz.quartz.test;
  2.  
  3. import org.junit.Test;
  4. import org.quartz.Scheduler;
  5. import org.quartz.SchedulerFactory;
  6. import org.quartz.impl.StdSchedulerFactory;
  7.  
  8. import com.ld.nhmz.quartz.QuartzJobExample;
  9. import com.ld.nhmz.quartz.QuartzManager;
  10.  
  11. /**
  12. * @Description: 测试类
  13. *
  14. * @ClassName: QuartzTest.java
  15. */
  16. public class QuartzTest {
  17. @Test
  18. public void quartz() {
  19. try {
  20. SchedulerFactory gSchedulerFactory = new StdSchedulerFactory();
  21. Scheduler sche = gSchedulerFactory.getScheduler();
  22. String job_name = "动态任务调度";
  23. System.out.println("【系统启动】开始(每1秒输出一次)...");
  24. QuartzManager.addJob(sche, job_name, QuartzJobExample.class, "0/1 * * * * ?");
  25.  
  26. Thread.sleep(3000);
  27. System.out.println("【修改时间】开始(每2秒输出一次)...");
  28. QuartzManager.modifyJobTime(sche, job_name, "10/2 * * * * ?");
  29. Thread.sleep(4000);
  30. System.out.println("【移除定时】开始...");
  31. QuartzManager.removeJob(sche, job_name);
  32. System.out.println("【移除定时】成功");
  33.  
  34. System.out.println("【再次添加定时任务】开始(每10秒输出一次)...");
  35. QuartzManager.addJob(sche, job_name, QuartzJobExample.class, "*/10 * * * * ?");
  36. Thread.sleep(30000);
  37. System.out.println("【移除定时】开始...");
  38. QuartzManager.removeJob(sche, job_name);
  39. System.out.println("【移除定时】成功");
  40. } catch (Exception e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. }

显示结果:

spring Control层代码中实现定时器管理

Spring整合Quartz实现动态定时器的更多相关文章

  1. Spring整合Quartz实现动态定时器,相关api,定时器添加,删除,修改

    一.版本说明 spring3.1以下的版本必须使用quartz1.x系列,3.1以上的版本才支持quartz 2.x,不然会出错. 原因:spring对于quartz的支持实现,org.springf ...

  2. Spring 整合 Quartz 实现动态定时任务

    复制自:https://www.2cto.com/kf/201605/504659.html 最近项目中需要用到定时任务的功能,虽然Spring 也自带了一个轻量级的定时任务实现,但感觉不够灵活,功能 ...

  3. 【转】Spring 整合 Quartz 实现动态定时任务

    http://blog.csdn.net/u014723529/article/details/51291289 最近项目中需要用到定时任务的功能,虽然spring 也自带了一个轻量级的定时任务实现, ...

  4. Spring 整合 Quartz 实现动态定时任务(附demo)

    最近项目中需要用到定时任务的功能,虽然Spring 也自带了一个轻量级的定时任务实现,但感觉不够灵活,功能也不够强大.在考虑之后,决定整合更为专业的Quartz来实现定时任务功能. 普通定时任务 首先 ...

  5. Spring quartz Job不能依赖注入,Spring整合quartz Job任务不能注入

    Spring quartz Job不能依赖注入,Spring整合quartz Job任务不能注入 Spring4整合quartz2.2.3中Job任务使用@Autowired不能注入 >> ...

  6. 使用spring整合Quartz实现—定时器

    使用spring整合Quartz实现—定时器(Maven项目做演示) 不基于特定的基类的方法 一,开发环境以及依赖的jar包 Spring 4.2.6.RELEASE Maven 3.3.9 Jdk ...

  7. 项目ITP(六) spring4.0 整合 Quartz 实现动态任务调度

    前言 系列文章:[传送门] 项目需求: http://www.cnblogs.com/Alandre/p/3733249.html 上一博客写的是基本调度,后来这只能用于,像每天定个时间 进行数据库备 ...

  8. Spring整合Quartz定时任务 在集群、分布式系统中的应用(Mysql数据库环境)

    Spring整合Quartz定时任务 在集群.分布式系统中的应用(Mysql数据库环境)   转载:http://www.cnblogs.com/jiafuwei/p/6145280.html 单个Q ...

  9. Spring整合Quartz (cronTrigger和simpleTrigger实现方法)

    Spring整合Quartz (cronTrigger和simpleTrigger实现方法) 之前有记录过一次springboot整合Quartz的文章,由于偶尔一次自己使用spring需要整合Qua ...

随机推荐

  1. QQ原创表情添加

    有时候与QQ好友聊天时会收到一些自己比较喜欢的原创表情,如果我们想把这些QQ不支持直接保存的原创表情保存到电脑上该怎么做呢?我们以原创表情图片为例简单介绍一下. 首先,先建立一个存放表情图片的文件夹. ...

  2. Css透明度

    全透明代码:{background:transparent} 半透明代码:{filter:alpha(opacity=80);-moz-opacity:0.8;width:auto !importan ...

  3. [转]用Objective-C实现简单的数学字符串公式的计算

    好友第一次用写技术分享,这么多年都没见他正经的写点东西.那天突然抬头问我,Objective-C有没字符串计算的.我说,没有.后来他默默实现了,特为他转发,表示支持. ================ ...

  4. 用“%20”取代字符串中空格的时间复杂度为O(n)的算法

    /*length 为字符串数组string的总容量*/ void ReplaceBlank(char stringp[],int length) { ) return; /*originalLengt ...

  5. 人工神经网络简介和单层网络实现AND运算--AForge.NET框架的使用(五)

    原文:人工神经网络简介和单层网络实现AND运算--AForge.NET框架的使用(五) 前面4篇文章说的是模糊系统,它不同于传统的值逻辑,理论基础是模糊数学,所以有些朋友看着有点迷糊,如果有兴趣建议参 ...

  6. php 读取 word

    ---恢复内容开始--- 首先安装com扩展: php.ini php.ini 确保有此语句 [PHP_COM_DOTNET] extension=php_com_dotnet.dll   php.i ...

  7. 【转】VirtualBox direct access to SD Card in Windows--不错

    原文网址:http://www.sandyscott.net/2013/08/14/virtualbox-direct-drive-access/ I’ve trying to get my Rasp ...

  8. 如何在Excel中启用宏?

    OFFICE2003版本中启用宏的方法: 1.首先打开EXCEL应用程序. 2.点击上方的"工具"--"宏"--"安全性" 3.在" ...

  9. Java中的克隆(CLONE)

    解读克隆 编程过程中我们常常遇到如下情况: 假设有一个对象object,在某处又需要一个跟object一样的实例object2,强调的是object和object2是两个独立的实例,只是在 开始的时候 ...

  10. linux内存管理--slab及其代码解析

    Linux内核使用了源自于 Solaris 的一种方法,但是这种方法在嵌入式系统中已经使用了很长时间了,它是将内存作为对象按照大小进行分配,被称为slab高速缓存. 内存管理的目标是提供一种方法,为实 ...