Spring Quartz 任务调度

1、Quartz做业类的继承方式来说,能够分为两类:php

  1. 做业类须要继承自特定的做业类基类,如Quartz中须要继承自org.springframework.scheduling.quartz.QuartzJobBean;java.util.Timer中须要继承自java.util.TimerTask。
  2. 做业类即普通的java类,不须要继承自任何基类。

注:推荐使用第二种方式,由于这样因此的类都是普通类,不须要事先区别对待。java

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

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

二 、第一种,做业类继承自特定的基类:org.springframework.scheduling.quartz.QuartzJobBeantomcat

第一步:定义做业类并发

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.springframework.scheduling.quartz.QuartzJobBean;
public class Job1 extends QuartzJobBean {
private int timeout;
private static int i = 0 ;
//调度工厂实例化后,通过timeout时间开始执行调度
public void setTimeout( int timeout) {
this .timeout = timeout;
}
/**
* 要调度的具体任务
*/
@Override
protected void executeInternal(JobExecutionContext context)
throws JobExecutionException {
System.out.println( "定时任务执行中…" );
}
}

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

1
2
3
4
5
6
7
8
<bean name= "job1" class = "org.springframework.scheduling.quartz.JobDetailBean" >
<property name= "jobClass" value= "com.gy.Job1" />
<property name= "jobDataAsMap" >
<map>
<entry key= "timeout" value= "0" />
</map>
</property>
</bean>

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

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

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

org.springframework.scheduling.quartz.SimpleTriggerBeanspa

org.springframework.scheduling.quartz.CronTriggerBean

第一种 SimpleTriggerBean,只支持按照必定频度调用任务,如每隔30分钟运行一次。配置方式以下:

1
2
3
4
5
<bean id= "simpleTrigger" class = "org.springframework.scheduling.quartz.SimpleTriggerBean" >
<property name= "jobDetail" ref= "job1" />
<property name= "startDelay" value= "0" /><!– 调度工厂实例化后,通过 0 秒开始执行调度 –>
<property name= "repeatInterval" value= "2000" /><!– 每 2 秒调度一次 –>
</bean>

第二种 CronTriggerBean,支持到指定时间运行一次,如天天12:00运行一次等。配置方式以下:

1
2
3
4
5
<bean id= "cronTrigger" class = "org.springframework.scheduling.quartz.CronTriggerBean" >
<property name= "jobDetail" ref= "job1" />
<!—天天 12 : 00 运行一次 —>
<property name= "cronExpression" value= "0 0 12 * * ?" />
</bean>

第四步:配置调度工厂

1
2
3
4
5
6
7
<bean class = "org.springframework.scheduling.quartz.SchedulerFactoryBean" >
<property name= "triggers" >
<list>
<ref bean= "cronTrigger" />
</list>
</property>
</bean>

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

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

3、第二种,做业类不继承特定基类。

Spring可以支持这种方式,归功于两个类:

org.springframework.scheduling.timer.MethodInvokingTimerTaskFactoryBean

org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean

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

第一步:编写任务类

1
2
3
4
5
public class Job2 {
public void doJob2() {
System.out.println( "不继承QuartzJobBean方式-调度进行中…" );
}
}

说明:能够看出,这就是一个普通的类,而且有一个方法。

第二步:配置做业类

1
2
3
4
5
6
7
8
<bean id= "job2"
class = "org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean" >
<property name= "targetObject" >
<bean class = "com.gy.Job2" />
</property>
<property name= "targetMethod" value= "doJob2" />
<property name= "concurrent" value= "false" /><!– 做业不并发调度 –>
</bean>

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

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

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

org.springframework.scheduling.quartz.SimpleTriggerBean

org.springframework.scheduling.quartz.CronTriggerBean

第一种SimpleTriggerBean,只支持按照必定频度调用任务,如每隔30分钟运行一次。配置方式以下:

1
2
3
4
5
<bean id= "simpleTrigger" class = "org.springframework.scheduling.quartz.SimpleTriggerBean" >
<property name= "jobDetail" ref= "job2" />
<property name= "startDelay" value= "0" /><!– 调度工厂实例化后,通过 0 秒开始执行调度 –>
<property name= "repeatInterval" value= "2000" /><!– 每 2 秒调度一次 –>
</bean>

第二种CronTriggerBean,支持到指定时间运行一次,如天天12:00运行一次等。配置方式以下:

1
2
3
4
5
ronTriggerBean">
<property name= "jobDetail" ref= "job2" />
<!—天天 12 : 00 运行一次 —>
<property name= "cronExpression" value= "0 0 12 * * ?" />
</bean>

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

第四步:配置调度工厂

1
2
3
4
5
6
7
<bean class = "org.springframework.scheduling.quartz.SchedulerFactoryBean" >
<property name= "triggers" >
<list>
<ref bean= "cronTrigger" />
</list>
</property>
</bean>

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

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

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

其实能够看出Quartz的配置看上去仍是挺复杂的,没有办法,由于Quartz实际上是个重量级的工具,若是咱们只是想简单的执行几个简单的定时任务,有没有更简单的工具,有!

posted @ 2016-07-05 09:32 独具匠心

  据说过有注解的定时任务简单不少

本人本身的 完整的 Quartz XML配置


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    
    <!--- 触发器的bean的设置,在这里咱们设置了咱们要触发的jobDetail是哪一个 -->
    
    
    <!-- 定时修改状态 -->
	<!-- 定时器类 -->
	<bean id="updateOffine" class="com.zte.tirgger.updateOffine">
	</bean>
	
	<!-- 任务调度 -->
	<bean id="updateOffineJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
		<!-- 调用的类 -->
		<property name="targetObject">
			<ref bean="updateOffine"/>
		</property>
		<!-- 调用类中的方法 -->
		<property name="targetMethod">
			<value>test</value>
		</property>
	</bean>
	
	<!-- 调度计划 -->
	<bean id="updateOffineTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">
		<property name="jobDetail">
			<ref bean="updateOffineJob"/>
		</property>
		<!-- 首次执行延期5分钟 每隔1分钟执行一次 -->
		<property name="startDelay" value="6000" />
		<property name="repeatInterval" value="6000" />
	</bean>
	
	<bean id="updateOffineJobSchedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
        <property name="triggers">  
            <list>  
                <ref bean="updateOffineTrigger" />
            </list>  
        </property>  
    </bean>  
    
</beans>
复制代码
相关文章
相关标签/搜索