Spring配置Quartz例子

1.引入除spring.jar外的Quartz的jar包quartz-all-1.8.6.jar

2.任务类 QuartzJob

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class QuartzJob {
     
     public void work1()
     {
     System.out.println( "Quartz的任务调度!!!work1启用……" );
     }
     
     public void work2()
     {
     System.out.println( "Quartz的任务调度!!!work2启用……" );
     }
 
 
}

2.Spring 配置 quartz-config.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<? xml version = "1.0" encoding = "UTF-8" ?>
< beans xmlns = "http://www.springframework.org/schema/beans"
     xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns:jee = "http://www.springframework.org/schema/jee"
     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd 
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.0.xsd">
 
 
     <!-- 线程执行器配置,用于任务注册 -->
     < bean id = "executor"
         class = "org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor" >
         < property name = "corePoolSize" value = "10" />
         < property name = "maxPoolSize" value = "100" />
         < property name = "queueCapacity" value = "500" />
     </ bean >
 
     <!-- 要调用的工作类 -->
     < bean id = "quartzJob" class = "QuartzJob" ></ bean >
 
 
 
     <!--调度业务 : 定义调用对象和调用对象的方法 -->
     < bean id = "jobtask1"
         class = "org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean" >
         <!-- 调用的类 -->
         < property name = "targetObject" ref = "quartzJob" />
         <!-- 调用类中的方法 -->
         < property name = "targetMethod" value = "work1" />
     </ bean >
     
     < bean id = "jobtask2"
         class = "org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean" >
         <!-- 调用的类 -->
         < property name = "targetObject" ref = "quartzJob" />
         <!-- 调用类中的方法 -->
         < property name = "targetMethod" value = "work2" />
     </ bean >
     
     <!-- 定义触发时间 -->
     < bean id = "doTime1" class = "org.springframework.scheduling.quartz.CronTriggerBean" >
         < property name = "jobDetail" ref = "jobtask1" />
         <!-- cron表达式 --> <!-- 每隔10秒执行一次 -->
         < property name = "cronExpression" value = "0/3 * * * * ?" />
     </ bean >
     
     < bean id = "doTime2" class = "org.springframework.scheduling.quartz.CronTriggerBean" >
         < property name = "jobDetail" ref = "jobtask2" />
         < property name = "cronExpression" value = "0/5 * * * * ?" />
     </ bean >
     
     <!--设置调度 总管理类 如果将lazy-init='false'那么容器启动就会执行调度程序 -->
     < bean id = "startQuertz" lazy-init = "false" autowire = "no"
         class = "org.springframework.scheduling.quartz.SchedulerFactoryBean" >
         < property name = "triggers" >
             < list >
                 < ref bean = "doTime1" />
                 < ref bean = "doTime2" />
             </ list >
         </ property >
         
         < property name = "taskExecutor" ref = "executor" />
     </ bean >
 
</ beans >

3.加载 <!-- 加载spring --> 

?
1
2
3
4
5
6
< context-param
         < param-name >contextConfigLocation</ param-name
         < param-value
             /WEB-INF/classes/quartz-config.xml 
         </ param-value
     </ context-param >

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值