Spring任務調度器之Task的使用(轉)

來源:互聯網
上載者:User

標籤:參考   value   核心部分   schedule   倒數   文章   odi   升級   1.0   

文章轉自 http://blog.csdn.net/l454822901/article/details/51829307

最近發現真的凹凸了,spring升級到3後原來已經內建任務調度器了,之前還一直使用著Quartz。其實也不是Quartz不好,只是相比之下,使用Spring task真的簡單很多,無論是理解還是使用。

 

Spring Task提供兩種方式進行配置,正如大家所想吧,還是一種是annotation(標註),而另外一種就是XML配置了。但其實這裡我覺得比較尷尬,因為任務調度這樣的需求,通常改動都是比較多的,如果用annotation的方式的話,改動就變得麻煩了,必須去重新編譯。所以,我只是選擇用XML配置的方式,不過我還是習慣性地啟用著標註方式,就如AOP配置那樣。annotation方式請自行尋找@Scheduled

 

具體配置參考如下即可

 

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:task="http://www.springframework.org/schema/task"  
  4.     xsi:schemaLocation="  
  5.           http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
  6.           http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd">  
  7.   
  8.     <bean id="reminderProcessor" class="com.foo.task.ReminderProcessor">  
  9.         <property name="workers">  
  10.             <array value-type="com.foo.task.Worker">  
  11.                 <ref bean="projectScheduleRemindWorker" />  
  12.             </array>  
  13.         </property>  
  14.     </bean>  
  15.   
  16.     <!-- 配置任務線性池 -->  
  17.     <task:executor id="executor" pool-size="3" />  
  18.     <task:scheduler id="scheduler" pool-size="3" />  
  19.     <!-- 啟用annotation方式 -->  
  20.     <task:annotation-driven scheduler="scheduler"  
  21.         executor="executor" proxy-target-class="true" />  
  22.   
  23.     <task:scheduled-tasks scheduler="scheduler">  
  24.         <task:scheduled ref="reminderProcessor" method="process"  
  25.             cron="0 0 12 * * ?" />  
  26.     </task:scheduled-tasks>  
  27. </beans>  

 

 

 

核心部分見

 

Xml代碼  
  1. <task:scheduled-tasks scheduler="scheduler">  
  2. <task:scheduled ref="reminderProcessor" method="process"  
  3. cron="0 0 12 * * ?" />  
  4. </task:scheduled-tasks>  

 

 

意思就是每天的12點執行reminderProcessor這個Bean中的process方法。cron的配置運算式跟Quartz基本一致,但實測不支援一些特殊字元,如配置天的時候的L,W和Z,因為遇到要每個月倒數第三天執行任務調度的需求,但我一配置SpringTask報非法字元。

 

所以,Quartz和SpringTask間的差距也顯而易見的。SpringTask用起來十分簡單,畢竟是Spring自家的,雖然跟Quartz也可以實現結合,但沒那麼簡單。而SpringTask功能也沒Quartz強大,Quartz的叢集和進階特性多的去了。所以大家可以自行選擇了。不過一般情況下,覺得SpringTask足夠了。

 

 

 

附上我這個例子的詳細UML說明


Spring任務調度器之Task的使用(轉)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.