我的日常

登录/注册
您现在的位置:论坛 新手区 新手教程 > SpringTask任务案例源码实现
总共48087条微博

动态微博

查看: 2207|回复: 0

SpringTask任务案例源码实现

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

    2021-2-2 11:21
  • 签到天数: 36 天

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2017-04-22 14:46:31 |只看该作者 |倒序浏览
    写在开始
    0 |: Z, D, j9 N一般来说,无论是生活中或者项目中都会用到定时任务。比如我自己来说,每天晚上写一篇博客,当然这个任务的时间点可能不是那么准时。更多的例子,比如我们项目中数据的统计,文件或者数据库的定时备份等等。
    ' r" T! A2 I. s9 `( Z举个特别常见的例子,比如一些大型网站,首页的一些数据展示。有时候并不是实时展示的,可能是十分钟或者更久更新一次,来呈现给用户。% f) s* M9 ~( C( m- O8 f

    $ X9 Q4 ]+ q: s- C任务介绍
    : D% x5 U! Z( ~+ f4 z就目前自己接触的定时人来来说,这里简单的聊下一下三种:
    + D- P$ L; D. h$ T7 C5 b' D; b# Q$ o! R' V
    1)java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。2 ~: @, A$ {$ h3 [

    5 |; A6 F$ ~' S( u# D2)开源调度框架Quartz,这是一个功能丰富比较强大的的调度器,可以实现内存和实例化数据库的任务(基于配置文件的内存实现和数据库实现)
    # U. w! H$ M3 X6 \
    + k+ Q# j! b6 d3)spring3以后自带的task任务管理,可以将它看成一个轻量级的Quartz,相对来说使用起来更加方便。
    , r% h( t+ Q. O% ~) L( ~  j" ~, a# `  U! S
    使用案例) M) w, a6 y' J2 G$ S! w7 n+ r$ B& T8 W
    关于1,2任务这里不做介绍,后面会为大家详细介绍,这里主要介绍一下springTask的使用方法。
    ; t' c; v8 v/ ?+ }* L- U4 d5 R3 P) J. o+ o
    这里使用的spring4.0.6版本,是支持springTask的 ,需要依赖spring-context-4.0.6.RELEASE.jar和spring-context-support-4.0.6.RELEASE.jar等等,后面会有源码提供。2 z" x5 V; X: A* I
    2 ]3 J, J/ f8 k4 N4 F$ B0 O
    springTask提供了基于xml配置和注解的两种实现方式。
    5 u* x0 r7 q% f, k
    6 I) t" }8 @& X! \; l6 N! U基于注解的实现TestJob.java:  c' O$ ?. D; X' Z3 ]
    1. package task;
      ! ?$ Z# V& G7 ^  ?

    2. ( ~; @, [: j" b$ F
    3. import org.springframework.scheduling.annotation.Scheduled;
      & t& c+ u4 s( |
    4. import org.springframework.stereotype.Component;
      * E" o. H: `% p, _
    5. /**, r2 Y0 v, p( e$ u5 j! d
    6. * 任务测试 科帮网 http://www.52itstyle.top/
      ; K; d) ~) F9 |$ A* D8 ]
    7. * 创建者        张志朋  J" R" ^% h- T* O* T3 L
    8. * 创建时间        2017年4月22日; u0 V& }3 g, h4 f0 ]  p
    9. *
      % W  I& Q9 Z/ J, i1 o3 W5 }& l
    10. */
      ! @. U; i, Q( X
    11. @Component("TestJob")  
      - j3 ]1 l( K% D7 Z4 ~$ J% y
    12. public class TestJob {0 h0 [4 K2 k# C' H# S2 S
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      1 ?. X1 K6 |  g8 O/ q. o( m. h
    14.     public void test1()
      : p' u8 N; \4 J. ^. N9 a
    15.     {
      ( }% q$ O7 @4 f0 G' d9 _
    16.         System.out.println("job1 开始执行");
      - u9 v7 z# m! J0 V( J: R- ]
    17.     } 6 x% p/ N2 {* W1 _8 V
    18.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      + M4 A1 C- D% @: F  G: l/ R
    19.     public void test2()
      : g' d1 s3 k; `3 X, V
    20.     {
      % b5 ^- F  {; i7 ]4 e6 n( A
    21.         System.out.println("job2 开始执行");/ w5 Y2 R  j" }) q! p: ]
    22.     }
      ) I0 X$ P3 P; g: U5 |4 M
    23. }
      7 i* t2 v# K- O1 c
    复制代码

    / X8 q9 J) ]- ^) V' `" r" V0 p+ O' B; N( r+ ]5 n
    基于注解的实现spring-context.xml:
    4 \# i/ M$ Y2 G) q
    1. <?xml version="1.0" encoding="UTF-8"?>
      + w. W5 Z, \1 D. F( h* S+ u
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      7 }1 k! Z% ]! j% ^4 w
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  * B1 J* H( O2 E* x. g
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      4 Y7 T2 M; N& R# Z: R5 C0 C
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="/ p  \/ I) z% p- H! U  f
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd5 s$ `- ]: p: f, _( {: I
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        H9 l2 {& I" t6 U: T
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd6 b0 a+ A3 v; ?6 l% S
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
        D/ B, y3 B# j$ F
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      ) k# b/ @( m1 h$ ]3 {" }9 S
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd' b3 x4 I/ N$ }
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">) i: k& r. M) L5 ]- o8 t
    13. : p8 q$ i, h$ a& V# H; H7 P5 B  F' ~
    14.         <description>Spring Configuration</description>) [* ~9 c7 D  S7 ?( k
    15.         , |5 \- T& i5 L
    16.         <context:component-scan base-package="task"/>
      1 ~" |/ z* R; L* b1 c. B$ }
    17.         
      & B* U0 U' |4 R- `2 r" `
    18.         <!-- 配置任务线性池 --># ^3 n4 C: Q# u4 s9 x' Z
    19.     <task:executor  id="executor" pool-size="10" />
      + f# R# i1 }  V4 H* n) q) y
    20.     <task:scheduler id="scheduler" pool-size="10"/>8 e7 F6 T& o& r& _; m8 F
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      $ j, B/ ]- i* N5 V
    22. </beans>
    复制代码

    4 f! ?6 Z4 S) b* l+ D( D0 l( q$ A' ^0 W$ ~* F
    $ H/ E- n7 y$ q$ ?
    基于配置的实现TestJob.java:9 X1 t( M( F7 p5 r# B
    1. package task;  v! g( v8 b* X6 P/ ?1 z
    2. " j* i  j0 ?: Z
    3. import org.springframework.stereotype.Component;
      9 \* U% R' {6 _  f2 ?
    4. /**; `* V9 I1 c$ E, b
    5. * 任务测试 科帮网 http://www.52itstyle.top/
      0 V6 U8 W" I1 Q  G
    6. * 创建者        张志朋+ S  s- ?" y0 T( J3 o' L/ o
    7. * 创建时间        2017年4月22日
      & d) ^2 E& A6 p( }1 L
    8. *
      4 a0 H% p* q1 d) r; u' [
    9. */
      * v$ D& t1 _9 G6 K
    10. @Component("TestJob")  - U! R  j* I% I5 L
    11. public class TestJob {, M- L1 X1 L9 m: V! @* }  h2 h; r1 ^# _
    12.     public void test1()
      * p0 v' j4 W7 f  W# P; I2 y1 D4 t
    13.     {
      9 Y& z- t5 Z/ l/ V: S8 Y
    14.         System.out.println("job1 开始执行");! R: V# Q9 c8 \
    15.     } ( g( S8 p* V$ F+ Q' j
    16.     public void test2()
      4 J, Q$ p1 ?, g: m1 i9 p7 [
    17.     {
      + r  |( c- ?: y3 ~, b) \" [
    18.         System.out.println("job2 开始执行");
      / s1 I. T8 ?$ [" _4 K
    19.     } ( j# e' @6 N1 u7 V# z
    20. }
      3 [2 _- @& _' o
    复制代码
    基于配置的实现spring-context.xml:6 j" ]4 |7 j& F) Y' v5 \+ T+ U
    1. <?xml version="1.0" encoding="UTF-8"?>
      . X! S( O8 n% G( \7 e
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"5 ^4 x6 j) ?/ `. [* n( y) g; d1 o8 G4 W! g
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
      9 c% _4 U8 v( C: f8 F7 ^+ y5 d/ q
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"& a+ }; J+ Z* G# V9 v6 R' ?1 z
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="8 G5 }3 @& B1 l/ J" C/ p2 Z
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd8 m, |2 ^2 U/ f" A( H/ D* |
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd# X& Y6 n* r7 W7 X, |. X
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd1 B0 x! s3 S" r+ n* m
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd/ g$ K5 N2 T; s/ h
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd; f  d5 G8 M5 h. r: ]
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd
      2 b+ v) X/ L1 [# l
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">/ c3 l' O  e; C  @" ?+ B4 I

    13. + z8 P; N8 {0 o
    14.         <description>Spring Configuration</description>0 s- K+ f7 j4 L  I( d
    15.         
      " [, X  J5 @) j0 g) m. I3 i
    16.         <context:component-scan base-package="task"/> 8 K6 ~) F& G5 @* b1 y
    17.         
      4 q, @7 p. _- \# b, C
    18.         <!-- 配置任务线性池 -->. C- w' M5 b% B. F1 b. A
    19.     <task:executor  id="executor" pool-size="10" /> 2 G( G* ^. ?; i( F# }4 l. T. V
    20.     <task:scheduler id="scheduler" pool-size="10"/>6 L- [' }; p" a0 p' G8 A0 d: a# `
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
        \* g( \. N5 q, A! t- g4 r
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
      ; t8 {2 M* O6 e& k
    23.     <task:scheduled-tasks scheduler="scheduler">  8 H+ W& \( t$ Z  j  Z4 n& ~
    24.         <task:scheduled ref="TestJob" method="test1" cron="0/5 * * * * ?"/>  
      6 ~- E8 B+ p  a: y" M5 U
    25.         <task:scheduled ref="TestJob" method="test2" cron="0/6 * * * * ?"/>  
      ' f6 E  T6 [& I$ Y& J( Z
    26.     </task:scheduled-tasks> $ V" T3 ?+ e+ a
    27. </beans>
    复制代码
    ! ]0 N: b  a5 V: p, ~4 {

    $ k' f6 f$ Z0 b$ K
    附:
    cronExpression的配置说明
    字段   允许值   允许的特殊字符
    秒    0-59    , - * /
    分    0-59    , - * /
    小时    0-23    , - * /
    日期    1-31    , - * ? / L W C
    月份    1-12 或者 JAN-DEC    , - * /
    星期    1-7 或者 SUN-SAT    , - * ? / L C #
    年(可选)    留空, 1970-2099    , - * /
    - 区间  
    * 通配符  
    ? 你不想设置那个字段
    下面只例出几个式子

    ' |' x& ~8 y3 }* ~$ U& E
    CRON表达式    含义
    "0 0 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:55分结束每5分钟一次触发
    "0 0/5 14,18 * * ?"    每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发
    "0 0-5 14 * * ?"    每天14:00至14:05每分钟一次触发
    "0 10,44 14 ? 3 WED"    三月的每周三的14:10和14:44触发
    "0 15 10 ? * MON-FRI"    每个周一、周二、周三、周四、周五的10:15触发
    SpringTask任务案例源码实现.txt (31 Bytes, 下载次数: 0, 售价: 1 IT币)
    ) I! N7 O5 x) h8 h; P

    科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关
    2、本站所有主题由该帖子作者发表,该帖子作者与科帮网享有帖子相关版权
    3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网的同意
    4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
    5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
    6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
    7、科帮网管理员和版主有权不事先通知发贴者而删除本文


    JAVA爱好者①群:JAVA爱好者① JAVA爱好者②群:JAVA爱好者② JAVA爱好者③ : JAVA爱好者③

    快速回复
    您需要登录后才可以回帖 登录 | 立即注册

       

    关闭

    站长推荐上一条 /1 下一条

    发布主题 快速回复 返回列表 联系我们 官方QQ群 科帮网手机客户端
    快速回复 返回顶部 返回列表