Java定时任务框架Quartz

引自:

http://yangpanwww.iteye.com/blog/797563

http://www.cnblogs.com/obullxl/archive/2011/07/10/spring-quartz-cron-integration.html

http://lgscofield.iteye.com/blog/1593036

http://my.oschina.net/Barudisshu/blog/294272

 

Quartz和Spring集成

Spring 的scheduling.quartz包中对Quartz框架进行了封装,使得开发时不用写任何QuartSpring的代码就可以实现定时任务。 Spring通过JobDetailBean,MethodInvokingJobDetailFactoryBean实现Job的定义。后者更加实用, 只需指定要运行的类,和该类中要运行的方法即可,Spring将自动生成符合Quartz要求的JobDetail。

构建依赖项
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!--添加Spring框架-->
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-core</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-web</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-context</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-context-support</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-tx</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-beans</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
< dependency >
     < groupId >org.springframework</ groupId >
     < artifactId >spring-aop</ artifactId >
     < version >${spring.version}</ version >
</ dependency >
 
< dependency >
     < groupId >org.quartz-scheduler</ groupId >
     < artifactId >quartz</ artifactId >
     < version >2.1.1</ version >
</ dependency >
创建任务类

这里的任务类不需要实现Job接口,并且注意任务的方法不能带参数,否则Spring会报错找不到该方法:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import ***;
 
/**
  * @author Barudisshu
  */
public class HelloWorld{
 
     private static Logger logger = Logger.getLogger(HelloWorld. class );
 
     public HelloWorld() {
     }
 
     /**
      * spring 检测要求不带参数
      */
     public void execute() {
         logger.info( "-----------------------------------------" +
                 "\n\nKick your ass and fuck your mother! \n\n" +
                 "-----------------------------------------" +
                 new Date());
     }
}

Spring的applicationContext.xml配置文件修改如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!--要调用的工作类-->
< bean id = "quartzJob" class = "net.individuals.quartz.HelloWorld" />
 
<!--定义调用对象和调用对象的方法-->
< bean id = "jobtask"
     class = "org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean" >
     <!--调用类-->
     < property name = "targetObject" ref = "quartzJob" />
     <!--调用方法-->
     < property name = "targetMethod" value = "execute" />
 
</ bean >
<!--定义触发时间-->
< bean id = "doTime"
     class = "org.springframework.scheduling.quartz.CronTriggerFactoryBean" >
     < property name = "jobDetail" ref = "jobtask" />
     <!--cron表达式-->
     < property name = "cronExpression" value = "0/5 * * * * ?" />
</ bean >
<!--总管理类-->
< bean id = "startQuartz"
     lazy-init = "false"
     autowire = "no"
     class = "org.springframework.scheduling.quartz.SchedulerFactoryBean" >
     < property name = "triggers" >
         <!--任务列表-->
         < list >
             < ref bean = "doTime" />
         </ list >
     </ property >
</ bean >

这里Bean的注入方式因个人喜好,也可以自动注入,另外web.xml的配置这里也不在赘言,请自行Spring文档。

 

注意,如果运行期间出错,可能是Spring的版本或者某些包冲突,我这里的Spring版本为3.2.4、Quartz为2.1.1 。

 

quartz 时间配置规则 
格式: [秒] [分] [小时] [日] [月] [周] [年] 

序号 说明 
是否必填 允许填写的值 允许的通配符 
1 秒 是 0-59   , - * / 
2 分 是 0-59 
  , - * / 
3 小时 是 0-23   , - * / 
4 日 是 1-31   , - * ? / L W 
5 月 是 1-12 or JAN-DEC   , - * / 
6 周 是 1-7 or SUN-SAT   , - * ? / L # 
7 年 否 empty 或 1970-2099 , - * / 
通配符说明: 
* 表示所有值. 例如:在分的字段上设置 "*",表示每一分钟都会触发。 
? 表示不指定值。使用的场景为不需要关心当前设置这个字段的值。例如:要在每月的10号触发一个操作,但不关心是周几,所以需要周位置的那个字段设置为"?" 具体设置为 0 0 0 10 * ? 
- 表示区间。例如 在小时上设置 "10-12",表示 10,11,12点都会触发。 
, 表示指定多个值,例如在周字段上设置 "MON,WED,FRI" 表示周一,周三和周五触发 
/ 用于递增触发。如在秒上面设置"5/15" 表示从5秒开始,每增15秒触发(5,20,35,50)。在月字段上设置'1/3'所示每月1号开始,每隔三天触发一次。 
L 表示最后的意思。在日字段设置上,表示当月的最后一天(依据当前月份,如果是二月还会依据是否是润年[leap]), 在周字段上表示星期六,相当于"7"或"SAT"。如果在"L"前加上数字,则表示该数据的最后一个。例如在周字段上设置"6L"这样的格式,则表示“本月最后一个星期五" 
W 表示离指定日期的最近那个工作日(周一至周五). 例如在日字段上设置"15W",表示离每月15号最近的那个工作日触发。如果15号正好是周六,则找最近的周五(14号)触发, 如果15号是周未,则找最近的下周一(16号)触发.如果15号正好在工作日(周一至周五),则就在该天触发。如果指定格式为 "1W",它则表示每月1号往后最近的工作日触发。如果1号正是周六,则将在3号下周一触发。(注,"W"前只能设置具体的数字,不允许区间"-"). 
小提示 
'L'和 'W'可以一组合使用。如果在日字段上设置"LW",则表示在本月的最后一个工作日触发(一般指发工资 ) 

# 序号(表示每月的第几个周几),例如在周字段上设置"6#3"表示在每月的第三个周六.注意如果指定"#5",正好第五周没有周六,则不会触发该配置(用在母亲节和父亲节再合适不过了) 
小提示 
周字段的设置,若使用英文字母是不区分大小写的 MON 与mon相同. 
       
常用示例: 

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分每分触发 
0 0/5 14 * * ? 每天下午的 2点到2点59分(整点开始,每隔5分触发) 
0 0/5 14,18 * * ? 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值