Spring中Quartz排程器的使用

xiangjai發表於2017-06-28

轉載文章, 閱讀原文


一、Quartz的特點

作業類的繼承方式來分,主要有以下兩種:

1.作業類繼承org.springframework.scheduling.quartz.QuartzJobBean類的方式

2.作業類不繼承org.springframework.scheduling.quartz.QuartzJobBean類的方式

注:個人比較推崇第二種,因為這種方式下的作業類仍然是POJO。

任務排程的觸發時機來分,主要有以下兩種:

1.每隔指定時間則觸發一次,對應的排程器為org.springframework.scheduling.quartz.SimpleTriggerBean

2.每到指定時間則觸發一次,對應的排程器為org.springframework.scheduling.quartz.CronTriggerBean

注:這兩種觸發方式均可以跟兩種作業繼承方式相互組合來使用。

 

下面簡單演示一下在spring對Quartz的用法。

二、作業類繼承org.springframework.scheduling.quartz.QuartzJobBean類,每到指定時間則觸發一次

1.編寫作業類

[java] view plain copy
  1. package bean.jobDetailBean;  
  2.   
  3. import org.quartz.JobExecutionContext;  
  4. import org.quartz.JobExecutionException;  
  5. import org.springframework.scheduling.quartz.QuartzJobBean;  
  6.   
  7. public class Job1 extends QuartzJobBean {  
  8.   
  9. private int timeout;  
  10. private static int i = 0;  
  11.   
  12. //排程工廠例項化後,經過timeout時間開始執行排程  
  13. public void setTimeout(int timeout) {  
  14.     this.timeout = timeout;  
  15. }  
  16.   
  17. /** 
  18. * 要排程的具體任務 
  19. */  
  20. @Override  
  21. protected void executeInternal(JobExecutionContext context)  
  22. throws JobExecutionException {  
  23.   
  24.     System.out.println("繼承QuartzJobBean的方式-排程" + ++i + "進行中...");  
  25.    }  
  26. }  

2.配置作業類

[html] view plain copy
  1. <!-- 作業使用繼承QuartzJobBean的方式  -->  
  2. <bean name="job1" class="org.springframework.scheduling.quartz.JobDetailBean">  
  3. <property name="jobClass" value="bean.jobDetailBean.Job1" />  
  4. <property name="jobDataAsMap">  
  5. <map>  
  6. <entry key="timeout" value="0" />  
  7. </map>  
  8. </property>  
  9. </bean>  

3.配置作業排程的觸發方式

[html] view plain copy
  1. <!-- 對應於作業繼QuartzJobBean類的方式  -->  
  2. <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  
  3. <property name="jobDetail" ref="job1" />  
  4.   
  5. <!--   
  6. "cronExpression"的配置說明  
  7.   
  8. 欄位   允許值   允許的特殊字元  
  9. 秒    0-59    , - * /  
  10. 分    0-59    , - * /  
  11. 小時    0-23    , - * /  
  12. 日期    1-31    , - * ? / L W C  
  13. 月份    1-12 或者 JAN-DEC    , - * /  
  14. 星期    1-7 或者 SUN-SAT    , - * ? / L C #  
  15. 年(可選)    留空, 1970-2099    , - * /   
  16.   
  17. - 區間    
  18. * 萬用字元    
  19. ? 你不想設定那個欄位  
  20. -->  
  21.   
  22. <!-- 每分鐘的第0,10,20,30,40,50秒排程一次 -->  
  23. <property name="cronExpression" value="0,10,20,30,40,50 * * * * ?" />  
  24. </bean>  

4.配置排程工廠

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

5.開啟排程

[java] view plain copy
  1. package test;  
  2.   
  3. import org.springframework.beans.factory.BeanFactory;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. public class ScheduleTest {  
  7.   
  8. public static void main(String[] args){  
  9. <span style="white-space:pre">  </span>BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext*.xml");  
  10.    }  
  11. }  

三、作業類不繼承org.springframework.scheduling.quartz.QuartzJobBean類,每隔指定時間則觸發一次

1.編寫作業類

[java] view plain copy
  1. package bean.jobDetailBean;  
  2.   
  3. public class Job2 {  
  4.   
  5. private static int i = 0;  
  6.   
  7. public void doJob2() {  
  8.     System.out.println("不繼承QuartzJobBean方式-排程" + ++i + "進行中...");  
  9.   }  
  10. }  
2.配置作業類

[html] view plain copy
  1. <bean id="job2"  
  2. class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  
  3. <property name="targetObject">  
  4. <bean class="bean.jobDetailBean.Job2" />  
  5. </property>  
  6. <property name="targetMethod" value="doJob2" />  
  7. <property name="concurrent" value="false" /><!-- 作業不併發排程 -->  
  8. </bean>  

3.配置作業排程的觸發方式

[html] view plain copy
  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>  

4.配置排程工廠

[html] view plain copy
  1. <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
  2. <property name="triggers">  
  3. <list>  
  4. <ref bean="simpleTrigger" />  
  5. </list>  
  6. </property>  
  7. </bean>  

5.開啟排程

[java] view plain copy
  1. package test;  
  2.   
  3. import org.springframework.beans.factory.BeanFactory;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. public class ScheduleTest {  
  7.   
  8. public static void main(String[] args){  
  9.   
  10.     BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext*.xml");  
  11.   }  
  12. }  

相關文章