码迷,mamicode.com
首页 > 编程语言 > 详细

java 定时器的几种实现方式以及 配置参数的说明

时间:2015-12-31 21:08:14      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:package   import   public   java   定时器   spring   

  1. 2.java中常见的定时器     

  2. 1)借助Java.util.Timer来实现     

  3. 2)OpenSymphony社区提供的Quartz来实现     

  4. 3.介绍Timer     

  5. 利用Timer开发定时任务是主要分为两个步骤:     

  6. 1)创建定时任务类     

  7. 示例代码:     

  8. package org.lzstone.action     

  9. import java.util.TimeTask     

  10. public class LzstoneTimeTask extends TimeTask{     

  11.        public void run(){     

  12.               //执行的定时器任务     

  13.        }     

  14. }     

  15. 2)运行定时任务,运行定时任务分为两种方式:     

  16. 2.1)程序直接启动     

  17. 示例代码:     

  18. package org.lzstone.action     

  19. public class LzstoneMain{     

  20.        .......     

  21.        public void run(){     

  22.         //执行定时器的任务     

  23.         //创建实例     

  24.         Timer timer = new Timer();     

  25.         参数:     

  26.         new LzstoneTimeTask()- 所要安排的任务。     

  27.         0- 执行任务前的延迟时间,单位是毫秒。     

  28.         1*1000- 执行各后续任务之间的时间间隔,单位是毫秒。     

  29.         timer.schedule(new LzstoneTimeTask(),0,1*1000);     

  30.        }     

  31. }     

  32. 2.2)web监听方式     

  33. 示例代码:     

  34. package org.lzstone.action     

  35. public class LzstoneMain implements ServletContextListener{     

  36.        private Timer timer = null;     

  37.        //初始化监听器,创建实例,执行任务     

  38.        public void contextInitialized(ServletContextEvent event){     

  39.                timer = new Timer();     

  40.                timer.schedule(new LzstoneTimeTask(),0,1*1000);     

  41.        }     

  42.        //销毁监听器,停止执行任务     

  43.        public void contextDestroyed(ServletContextEvent event){     

  44.               //注意,在此计时器调用的计时器任务的 run 方法内调用此方法,就可以绝对确保正在执行的任务是此计时器所执行的最后一个任务。     

  45.               timer.cancel();     

  46.         }     

  47. }     

  48. web.xml配置     

  49. <listener>     

  50.    <listener-class>     

  51.         org.lzstone.action.LzstoneMain     

  52.    </listener-class>     

  53. </listener>     

  54. 4. 介绍Quartz     

  55. Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目,可以用来创建简单或者复杂的定时任务,利用Quartz开发定时任务的步骤与Timer类     

  56.     

  57. 似。     

  58.     

  59. 利用Quartz开发定时任务是主要分为两个步骤:     

  60. 1)创建定时任务类     

  61. 示例代码:     

  62. package org.lzstone.action     

  63. public class LzstoneTimeTask implements Job{     

  64.        public void execute(JobExecutionContext context) throws JobExecutionException{     

  65.               //执行的定时器任务     

  66.        }     

  67. }     

  68. 2)运行定时任务,运行定时任务分为两种方式:     

  69. 2.1)程序直接启动,创建任务调度器及配置相应的任务计划     

  70. 示例代码:     

  71. package org.lzstone.action     

  72. public class LzstoneMain{     

  73.        private static Scheduler sched;     

  74.        public static void run() throws Exception{     

  75.               //创建LzstoneTimeTask的定时任务     

  76.               JobDetail jobDetail = new JobDetail("lzstoneJob",sched.DEFAULT_GROUP,LzstoneTimeTask.class);     

  77.               //目标 创建任务计划     

  78.               CronTrigger trigger = new CronTrigger("lzstoneTrigger","lzstone","0 0 12 * * ?");     

  79.               //0 0 12 * * ? 代表每天的中午12点触发     

  80.               sched = new org.quartz.impl.StdSchedulerFactory().getScheduler();     

  81.               sched.scheduleJob(jobDetail,trigger);     

  82.               sched.start();     

  83.        }     

  84.        //停止     

  85.        public static void stop() throws Exception{     

  86.               sched.shutdown();     

  87.         }     

  88. }     

  89. //执行     

  90. public class Main{     

  91.        .............     

  92.        public void run(){     

  93.             LzstoneMain.run();     

  94.        }     

  95.        ............     

  96. }     

  97. 2.2)web监听方式     

  98. 示例代码:     

  99. package org.lzstone.action     

  100. public class LzstoneMainListener implements ServletContextListener{     

  101.        private Timer timer = null;     

  102.        //初始化监听器,创建实例,执行任务     

  103.        public void contextInitialized(ServletContextEvent event){     

  104.                LzstoneMain.run();     

  105.        }     

  106.        //销毁监听器,停止执行任务     

  107.        public void contextDestroyed(ServletContextEvent event){     

  108.               LzstoneMain.stop();     

  109.         }     

  110. }     

  111. web.xml配置     

  112. <listener>     

  113.    <listener-class>     

  114.         org.lzstone.action.LzstoneMainListener     

  115.    </listener-class>     

  116. </listener>     

  117. 5.对比     

  118. Timer方式实现定时器,原理简单,实现方便,在执行简单的任务比较方便,不足之处是无法确定执行时间,并且依赖性比较强,必须继承指定的类     

  119. Quartz方式实现定时器,方便,清晰指定启动时间,定时参数比较灵活,容易实现比较复杂的定时任务,不足之处是需要实现特定接口,加载其框架     

  120. 两种方式各有优缺点,在特定场合可以根据其特点选择使用。     

  121. 6.Spring定时任务     

  122. Spring定时任务对Timer与Quartz都提供了支持,并且实现步骤基本一样     

  123. 首先配置Spring对Timer的支持     

  124. 1.1 创建定时任务类     

  125. package org.lzstone.action     

  126. import java.util.TimeTask     

  127. public class LzstoneTimeTask extends TimeTask{     

  128.        public void run(){     

  129.               //执行的定时器任务     

  130.        }     

  131. }     

  132. 1.2 注册定时任务类,配置任务计划与任务调度器     

  133.     在项目的WEB-INF下面创建TimerConfig.xml文件     

  134. <?xml version="1.0" encoding="UTF-8"?>     

  135. <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">     

  136. <beans>     

  137. <bean>     

  138. <!--注册定时执行任务实体-->     

  139. <bean id="lzstoneTimeTask" class="org.lzstone.action.LzstoneTimeTask"/>     

  140. <!--注册定时器信息-->     

  141. <bean id="taskInfo" class="org.springframework.scheduling.timer.ScheduledTimerTask">     

  142. <!--第一次执行任务前需要等待的时间,这里设置为3秒-->     

  143. <property name="delay">     

  144. <value>3000</value>     

  145. </property>     

  146. <!--设置任务的执行周期 这里设置为4秒-->     

  147. <property name="period">     

  148.   <value>4000</value>     

  149. </property>     

  150. <!--设置具体执行的任务 这里设置为lzstoneTimeTask-->     

  151. <property name="timerTask">     

  152. <ref local="lzstoneTimeTask"/>     

  153. </property>     

  154. </bean>     

  155. <!--配置定时器任务的调度器-->     

  156. <bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean">     

  157. <!--注册定时器列表-->     

  158. <property name="scheduledTimerTasks">     

  159.     <list>     

  160.         <ref local="taskInfo"/>     

  161.         ........     

  162.     </list>     

  163. </property>     

  164. </bean>     

  165. </beans>     

  166. 1.3 web项目中的启动设置     

  167.     <context-param>     

  168.       <param-name>contextConfigLocation</param-name>     

  169.       <param-value>/WEB-INF/TimerConfig.xml</param-value>     

  170.      </context-param>     

  171.     

  172.      <listener>     

  173.          <listener-class>     

  174.                   org.springframework.web.context.ContextLoaderListener     

  175.          </listener-class>     

  176.      </listener>     

  177. 配置Spring对Quartz的支持     

  178. 2.1 创建定时任务类     

  179. package org.lzstone.action     

  180. public class LzstoneQuartzTask{     

  181.        public void execute(){     

  182.               //执行的定时器任务     

  183.        }     

  184. }     

  185. 2.2 注册定时任务类,配置任务计划与任务调度器     

  186.     在项目的WEB-INF下面创建QuartzConfig.xml文件     

  187. <?xml version="1.0" encoding="UTF-8"?>     

  188. <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">     

  189. <beans>     

  190. <bean>     

  191. <!--注册定时执行任务实体-->     

  192. <bean id="lzstoneQuartzTask" class="org.lzstone.action.LzstoneQuartzTask"/>     

  193. <!--注册定时器信息-->     

  194. <bean id="taskInfo" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">     

  195. <!--指定要执行的定时任务类  这里是LzstoneQuartzTask-->     

  196. <property name="targetObject">     

  197. <ref local="lzstoneQuartzTask"/>     

  198. </property>     

  199. <!--指定定时器任务类要执行的方法名称 这里是execute-->     

  200. <property name="targetMethod">     

  201. <value>execute</value>     

  202. </property>     

  203. </bean>     

  204. <!--配置定时器任务的调度器-->     

  205. <bean id="quartzTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">     

  206. <!--声明要运行的实体-->     

  207. <property name="jobDetail">     

  208.     <ref local="taskInfo"/>     

  209. </property>     

  210. <!--设置运行时间-->     

  211. <property name="cronExpression">     

  212.     <value>0 0 12 * * ?</value>     

  213. </property>     

  214. </bean>     

  215. <!--注册监听器-->     

  216. <bean id="registerQuartz" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">     

  217. <!--注册定时器实体 集合-->     

  218. <property name="triggers">     

  219.     <list>     

  220.           <ref local="quartzTrigger"/>     

  221.     </list>     

  222. </property>     

  223. </bean>     

  224. </beans>     

  225. 2.3 web项目中的启动设置     

  226.     <context-param>     

  227.       <param-name>contextConfigLocation</param-name>     

  228.       <param-value>/WEB-INF/QuartzConfig.xml</param-value>     

  229.      </context-param>     

  230.     

  231.      <listener>     

  232.          <listener-class>     

  233.                   org.springframework.web.context.ContextLoaderListener     

  234.          </listener-class>     

  235.      </listener>    

Spring定时任务的几种实现

近日项目开发中需要执行一些定时任务,比如需要在每天凌晨时候,分析一次前一天的日志信息,借此机会整理了一下定时任务的几种实现方式,由于项目采用spring框架,所以我都将结合

spring框架来介绍。

一.分类

  • 从实现的技术上来分类,目前主要有三种技术(或者说有三种产品):

  1. Java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。一般用的较少,这篇文章将不做详细介绍。

  2. 使用Quartz,这是一个功能比较强大的的调度器,可以让你的程序在指定时间执行,也可以按照某一个频度执行,配置起来稍显复杂,稍后会详细介绍。

  3. Spring3.0以后自带的task,可以将它看成一个轻量级的Quartz,而且使用起来比Quartz简单许多,稍后会介绍。

  • 从作业类的继承方式来讲,可以分为两类:

  1. 作业类需要继承自特定的作业类基类,如Quartz中需要继承自org.springframework.scheduling.quartz.QuartzJobBean;java.util.Timer中需要继承自java.util.TimerTask。

  2. 作业类即普通的java类,不需要继承自任何基类。

注:个人推荐使用第二种方式,因为这样所以的类都是普通类,不需要事先区别对待。

 

  • 从任务调度的触发时机来分,这里主要是针对作业使用的触发器,主要有以下两种:
  1. 每隔指定时间则触发一次,在Quartz中对应的触发器为:org.springframework.scheduling.quartz.SimpleTriggerBean

  2. 每到指定时间则触发一次,在Quartz中对应的调度器为:org.springframework.scheduling.quartz.CronTriggerBean

注:并非每种任务都可以使用这两种触发器,如java.util.TimerTask任务就只能使用第一种。Quartz和spring task都可以支持这两种触发条件。

 

 

二.用法说明

详细介绍每种任务调度工具的使用方式,包括Quartz和spring task两种。

Quartz

第一种,作业类继承自特定的基类:org.springframework.scheduling.quartz.QuartzJobBean。

第一步:定义作业类

 

Java代码  技术分享

  1. import org.quartz.JobExecutionContext;  

  2. import org.quartz.JobExecutionException;  

  3. import org.springframework.scheduling.quartz.QuartzJobBean;  

  4. public class Job1 extends QuartzJobBean {  

  5.   

  6. private int timeout;  

  7. private static int i = 0;  

  8. //调度工厂实例化后,经过timeout时间开始执行调度  

  9. public void setTimeout(int timeout) {  

  10. this.timeout = timeout;  

  11. }  

  12.   

  13. /** 

  14. * 要调度的具体任务 

  15. */  

  16. @Override  

  17. protected void executeInternal(JobExecutionContext context)  

  18. throws JobExecutionException {  

  19.   System.out.println("定时任务执行中…");  

  20. }  

  21. }  

 第二步:spring配置文件中配置作业类JobDetailBean

Xml代码  技术分享

  1. <bean name="job1" class="org.springframework.scheduling.quartz.JobDetailBean">  

  2. <property name="jobClass" value="com.gy.Job1" />  

  3. <property name="jobDataAsMap">  

  4. <map>  

  5. <entry key="timeout" value="0" />  

  6. </map>  

  7. </property>  

  8. </bean>  

 说明:org.springframework.scheduling.quartz.JobDetailBean有两个属性,jobClass属性即我们在java代码中定义的任务类,jobDataAsMap属性即该任务类中需要注入的属性值。

第三步:配置作业调度的触发方式(触发器)

Quartz的作业触发器有两种,分别是

org.springframework.scheduling.quartz.SimpleTriggerBean

org.springframework.scheduling.quartz.CronTriggerBean

第一种SimpleTriggerBean,只支持按照一定频度调用任务,如每隔30分钟运行一次。

配置方式如下:

 

Xml代码  技术分享

  1. <bean id="simpleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">  

  2. <property name="jobDetail" ref="job1" />  

  3. <property name="startDelay" value="0" /><!-- 调度工厂实例化后,经过0秒开始执行调度 -->  

  4. <property name="repeatInterval" value="2000" /><!-- 每2秒调度一次 -->  

  5. </bean>  

第二种CronTriggerBean,支持到指定时间运行一次,如每天12:00运行一次等。

配置方式如下:

Xml代码  技术分享

  1. <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  

  2. <property name="jobDetail" ref="job1" />  

  3. <!—每天12:00运行一次 -->  

  4. <property name="cronExpression" value="0 0 12 * * ?" />  

  5. </bean>  

 关于cronExpression表达式的语法参见附录。

第四步:配置调度工厂 

Xml代码  技术分享

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

  2. <property name="triggers">  

  3. <list>  

  4. <ref bean="cronTrigger" />  

  5. </list>  

  6. </property>  

  7. </bean>  

 说明:该参数指定的就是之前配置的触发器的名字。

第五步:启动你的应用即可,即将工程部署至tomcat或其他容器。

 

 

第二种,作业类不继承特定基类。

Spring能够支持这种方式,归功于两个类:

org.springframework.scheduling.timer.MethodInvokingTimerTaskFactoryBean

org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean

这两个类分别对应spring支持的两种实现任务调度的方式,即前文提到到java自带的timer task方式和Quartz方式。这里我只写MethodInvokingJobDetailFactoryBean的用法,使用该类的好处是,我们的任 务类不再需要继承自任何类,而是普通的pojo。

第一步:编写任务类

Java代码  技术分享

  1. public class Job2 {  

  2. public void doJob2() {  

  3. System.out.println("不继承QuartzJobBean方式-调度进行中...");  

  4. }  

  5. }  

 可以看出,这就是一个普通的类,并且有一个方法。

第二步:配置作业类

Xml代码  技术分享

  1. <bean id="job2"  

  2. class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  

  3. <property name="targetObject">  

  4. <bean class="com.gy.Job2" />  

  5. </property>  

  6. <property name="targetMethod" value="doJob2" />  

  7. <property name="concurrent" value="false" /><!-- 作业不并发调度 -->  

  8. </bean>  

 说明:这一步是关键步骤,声明一个MethodInvokingJobDetailFactoryBean,有两个关键属性:targetObject指定任务类,targetMethod指定运行的方法。往下的步骤就与方法一相同了,为了完整,同样贴出。

第三步:配置作业调度的触发方式(触发器)

Quartz的作业触发器有两种,分别是

org.springframework.scheduling.quartz.SimpleTriggerBean

org.springframework.scheduling.quartz.CronTriggerBean

第一种SimpleTriggerBean,只支持按照一定频度调用任务,如每隔30分钟运行一次。

配置方式如下:

Xml代码  技术分享

  1. <bean id="simpleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">  

  2. <property name="jobDetail" ref="job2" />  

  3. <property name="startDelay" value="0" /><!-- 调度工厂实例化后,经过0秒开始执行调度 -->  

  4. <property name="repeatInterval" value="2000" /><!-- 每2秒调度一次 -->  

  5. </bean>  

 第二种CronTriggerBean,支持到指定时间运行一次,如每天12:00运行一次等。

配置方式如下:

Xml代码  技术分享

  1. <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  

  2. <property name="jobDetail" ref="job2" />  

  3. <!—每天12:00运行一次 -->  

  4. <property name="cronExpression" value="0 0 12 * * ?" />  

  5. </bean>  

以上两种调度方式根据实际情况,任选一种即可。

第四步:配置调度工厂 

Xml代码  技术分享

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

  2. <property name="triggers">  

  3. <list>  

  4. <ref bean="cronTrigger" />  

  5. </list>  

  6. </property>  

  7. </bean>  

说明:该参数指定的就是之前配置的触发器的名字。

第五步:启动你的应用即可,即将工程部署至tomcat或其他容器。

 

到此,spring中Quartz的基本配置就介绍完了,当然了,使用之前,要导入相应的spring的包与Quartz的包,这些就不消多说了。

其实可以看出Quartz的配置看上去还是挺复杂的,没有办法,因为Quartz其实是个重量级的工具,如果我们只是想简单的执行几个简单的定时任务,有没有更简单的工具,有!

请看我第下文Spring task的介绍。

 

Spring-Task

上节介绍了在Spring 中使用Quartz,本文介绍Spring3.0以后自主开发的定时任务工具,spring task,可以将它比作一个轻量级的Quartz,而且使用起来很简单,除spring相关的包外不需要额外的包,而且支持注解和配置文件两种

形式,下面将分别介绍这两种方式。

第一种:配置文件方式

第一步:编写作业类

即普通的pojo,如下:

Java代码  技术分享

  1. import org.springframework.stereotype.Service;  

  2. @Service  

  3. public class TaskJob {  

  4.       

  5.     public void job1() {  

  6.         System.out.println(“任务进行中。。。”);  

  7.     }  

  8. }  

 第二步:在spring配置文件头中添加命名空间及描述

Xml代码  技术分享

  1. <beans xmlns="http://www.springframework.org/schema/beans"  

  2.     xmlns:task="http://www.springframework.org/schema/task"   

  3.     。。。。。。  

  4.     xsi:schemaLocation="http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd">  

 第三步:spring配置文件中设置具体的任务

Xml代码  技术分享

  1.  <task:scheduled-tasks>   

  2.         <task:scheduled ref="taskJob" method="job1" cron="0 * * * * ?"/>   

  3. </task:scheduled-tasks>  

  4.   

  5. <context:component-scan base-package=" com.gy.mytask " />  

说明:ref参数指定的即任务类,method指定的即需要运行的方法,cron及cronExpression表达式,具体写法这里不介绍了,详情见上篇文章附录。

<context:component-scan base-package="com.gy.mytask" />这个配置不消多说了,spring扫描注解用的。

到这里配置就完成了,是不是很简单。

第二种:使用注解形式

也许我们不想每写一个任务类还要在xml文件中配置下,我们可以使用注解@Scheduled,我们看看源文件中该注解的定义:

Java代码  技术分享

  1. @Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.ANNOTATION_TYPE})  

  2. @Retention(RetentionPolicy.RUNTIME)  

  3. @Documented  

  4. public @interface Scheduled  

  5. {  

  6.   public abstract String cron();  

  7.   

  8.   public abstract long fixedDelay();  

  9.   

  10.   public abstract long fixedRate();  

  11. }  

 可以看出该注解有三个方法或者叫参数,分别表示的意思是:

cron:指定cron表达式

fixedDelay:官方文档解释:An interval-based trigger where the interval is measured from the completion time of the previous task. The time unit value is measured in milliseconds.即表示从上一个任务完成开始到下一个任务开始的间隔,单位是毫秒。

fixedRate:官方文档解释:An interval-based trigger where the interval is measured from the start time of the previous task. The time unit value is measured in milliseconds.即从上一个任务开始到下一个任务开始的间隔,单位是毫秒。

 

下面我来配置一下。

第一步:编写pojo

Java代码  技术分享

  1. import org.springframework.scheduling.annotation.Scheduled;    

  2. import org.springframework.stereotype.Component;  

  3.   

  4. @Component(“taskJob”)  

  5. public class TaskJob {  

  6.     @Scheduled(cron = "0 0 3 * * ?")  

  7.     public void job1() {  

  8.         System.out.println(“任务进行中。。。”);  

  9.     }  

  10. }  

 第二步:添加task相关的配置:

Xml代码  技术分享

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <beans xmlns="http://www.springframework.org/schema/beans"  

  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"  

  4.     xmlns:context="http://www.springframework.org/schema/context"  

  5.     xmlns:tx="http://www.springframework.org/schema/tx"  

  6.     xmlns:task="http://www.springframework.org/schema/task"  

  7.     xsi:schemaLocation="  

  8.         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  

  9.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  

  10.         http://www.springframework.org/schema/context   

  11. http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd  

  12.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  

  13.         http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd"  

  14.     default-lazy-init="false">  

  15.   

  16.   

  17.     <context:annotation-config />  

  18.     <!—spring扫描注解的配置   -->  

  19.     <context:component-scan base-package="com.gy.mytask" />  

  20.       

  21. <!—开启这个配置,spring才能识别@Scheduled注解   -->  

  22.     <task:annotation-driven scheduler="qbScheduler" mode="proxy"/>  

  23.     <task:scheduler id="qbScheduler" pool-size="10"/> 

字段
允许值
允许的特殊字符

0-59
, - * /

0-59
, - * /
小时
0-23
, - * /
日期
1-31
, - * ? / L W C
月份
1-12 或者 JAN-DEC
, - * /
星期
1-7 或者 SUN-SAT
, - * ? / L C #
年(可选)
留空, 1970-2099
, - * /


特殊字符
意义
*
表示所有值;
?
表示未说明的值,即不关心它为何值;
-
表示一个指定的范围;
,
表示附加一个可能值;
/
符号前表示开始时间,符号后表示每次递增的值;
L("last")
("last") "L" 用在day-of-month字段意思是 "这个月最后一天";用在 day-of-week字段, 它简单意思是 "7" or "SAT"。如果在day-of-week字段里和数字联合使用,它的意思就是 "这个月的最后一个星期几" – 例如: "6L" means "这个月的最后一个星期五". 当我们用“L”时,不指明一个列表值或者范围是很重要的,不然的话,我们会得到一些意想不到的结果。
W("weekday")
只能用在day-of-month字段。用来描叙最接近指定天的工作日(周一到周五)。例如:在day-of-month字 段用“15W”指“最接近这个月第15天的工作日”,即如果这个月第15天是周六,那么触发器将会在这个月第14天即周五触发;如果这个月第15天是周 日,那么触发器将会在这个月第16 天即周一触发;如果这个月第15天是周二,那么就在触发器这天触发。注意一点:这个用法只会在当前月计算值,不会越过当前月。“W”字符仅能在day- of-month指明一天,不能是一个范围或列表。也可以用“LW”来指定这个月的最后一个工作日。
#
只能用在day-of-week字段。用来指定这个月的第几个周几。例:在day-of-week字段用"6#3"指这个月第3个周五(6指周五,3指第3个)。如果指定的日期不存在,触发器就不会触发。
C
指和calendar联系后计算过的值。例:在day-of-month 字段用“5C”指在这个月第5天或之后包括calendar的第一天;在day-of-week字段用“1C”指在这周日或之后包括calendar的第一天。

在MONTH和Day Of Week字段里对字母大小写不敏感 

"0 0 12 * * ?"
每天中午12点触发
"0 15 10 ? * *"
每天上午10:15触发
"0 15 10 * * ?"
每天上午10:15触发
"0 15 10 * * ? *"
每天上午10:15触发
"0 15 10 * * ? 2005"
2005年的每天上午10:15触发
"0 * 14 * * ?"
在每天下午2点到下午2:59期间的每1分钟触发
"0 0/5 14 * * ?"
在每天下午2点到下午2:55期间的每5分钟触发
"0 0/5 14,18 * * ?"
在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发
"0 0-5 14 * * ?"
在每天下午2点到下午2:05期间的每1分钟触发
"0 10,44 14 ? 3 WED"
每年三月的星期三的下午2:10和2:44触发
"0 15 10 ? * MON-FRI"
周一至周五的上午10:15触发
"0 15 10 15 * ?"
每月15日上午10:15触发
"0 15 10 L * ?"
每月最后一日的上午10:15触发
"0 15 10 ? * 6L"
每月的最后一个星期五上午10:15触发
"0 15 10 ? * 6L 2002-2005"
2002年至2005年的每月的最后一个星期五上午10:15触发
"0 15 10 ? * 6#3"
每月的第三个星期五上午10:15触发




本文出自 “进化之路” 博客,请务必保留此出处http://wxbhuqin.blog.51cto.com/2833256/1730530

java 定时器的几种实现方式以及 配置参数的说明

标签:package   import   public   java   定时器   spring   

原文地址:http://wxbhuqin.blog.51cto.com/2833256/1730530

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!