我的日常

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

动态微博

查看: 2204|回复: 0

SpringTask任务案例源码实现

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2017-04-22 14:46:31 |只看该作者 |倒序浏览
    写在开始
    4 [. `. \5 M7 G3 ?8 i一般来说,无论是生活中或者项目中都会用到定时任务。比如我自己来说,每天晚上写一篇博客,当然这个任务的时间点可能不是那么准时。更多的例子,比如我们项目中数据的统计,文件或者数据库的定时备份等等。
      G2 ]$ y' ~3 D; _# W; g8 e6 w' e举个特别常见的例子,比如一些大型网站,首页的一些数据展示。有时候并不是实时展示的,可能是十分钟或者更久更新一次,来呈现给用户。
    1 G/ X2 E. H: I* i, C  ~3 r
    9 B! Y- t+ b9 q任务介绍
    ! y4 M2 W  V+ f: l% D" B) E# a. H就目前自己接触的定时人来来说,这里简单的聊下一下三种:
    & U# {; ?2 l+ o9 K3 e" Z. J% g% G! `" @7 k+ N. h; O8 P
    1)java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。
    ; f; {: Z# M# Y) w9 _
    ; M: H; {2 O7 l2)开源调度框架Quartz,这是一个功能丰富比较强大的的调度器,可以实现内存和实例化数据库的任务(基于配置文件的内存实现和数据库实现)
    0 T  V, M2 b& V, ~; i) R" i; _) _
    5 j$ D& V3 F3 y$ J/ H3)spring3以后自带的task任务管理,可以将它看成一个轻量级的Quartz,相对来说使用起来更加方便。
    & O6 y0 ?! k' W* X% c; }8 k+ w  ~2 `7 ?
    使用案例8 {: s% g3 _' E5 q) `$ I
    关于1,2任务这里不做介绍,后面会为大家详细介绍,这里主要介绍一下springTask的使用方法。
    & K. G% ^" n( p: I9 X5 G* M+ D% d) z0 A3 ^& _) @  u" {
    这里使用的spring4.0.6版本,是支持springTask的 ,需要依赖spring-context-4.0.6.RELEASE.jar和spring-context-support-4.0.6.RELEASE.jar等等,后面会有源码提供。
      V0 `# `$ ~5 T* k) M+ b- t5 K# Q8 r0 c+ W# [8 W' c1 h
    springTask提供了基于xml配置和注解的两种实现方式。& W" v0 S3 |: A" y- w2 L

    " @5 J9 q$ M% Q# \& A# Y8 b9 `基于注解的实现TestJob.java:6 v/ {/ ^8 r) w5 I+ C7 Y
    1. package task;$ j3 `5 n# {* I5 B- r2 F
    2. + y) F0 _3 g- r9 K7 \  a9 w: J+ [
    3. import org.springframework.scheduling.annotation.Scheduled;
      / o  ]5 m7 q" @' G% s$ A5 }% e5 {6 l
    4. import org.springframework.stereotype.Component;
      " s+ o# S% X& |% ^. g& w
    5. /**
      5 X- v2 |+ `, v2 y4 U
    6. * 任务测试 科帮网 http://www.52itstyle.top/1 M& o3 a# B9 q% t2 {' h
    7. * 创建者        张志朋
      * A) J; a+ {, c. x1 A+ m
    8. * 创建时间        2017年4月22日
      . o' u/ x  w1 K8 k; p
    9. *# x: N" s. r' C. i1 ?
    10. */
      + ]5 l) D( d( G5 a9 s' Q1 G# q
    11. @Component("TestJob")  
      + W* ?9 P* O' L9 ?4 t
    12. public class TestJob {! f# s+ m: T& h) s& Z: ?
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      ( `  Q% j9 t! ^3 W
    14.     public void test1()% T" M) r7 \9 g) I/ o
    15.     {
      ( n# T7 d3 C) ]$ _* l2 s% {
    16.         System.out.println("job1 开始执行");' t4 A. v' T: Q0 d$ m' O
    17.     }
      0 y: I8 T1 W/ y
    18.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次 2 \7 E2 B- k1 k$ l
    19.     public void test2()3 n0 g1 t, R; w
    20.     {( `, D. W% T4 b
    21.         System.out.println("job2 开始执行");
      ) E+ w: \: ~/ L8 A+ t0 _" t: H
    22.     } % D! u1 L$ F6 J  Y3 g7 D
    23. }3 P% H+ \- f1 x, ?9 W$ l& f9 p8 a
    复制代码
    $ k! g2 X% N6 B% t' S

    * p8 A% ~$ q: C/ j. G) I基于注解的实现spring-context.xml:
    . L/ t. P/ z4 L8 |2 Q
    1. <?xml version="1.0" encoding="UTF-8"?>( [! l  d& `3 O# v1 _
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      " X, s3 a% E* n3 A
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  5 X2 r  P+ _% j; v1 _7 q
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      # F' s% h: [2 a* G# v
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
      4 W5 s; H) }/ ?- G2 ^" ~+ ]( r: K  X% B
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd. V+ i; x9 o9 C7 `
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      ( u5 T; F  {$ Z' j. z9 i6 }7 o
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd( o) c  s" q( W% {: m
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd1 l. N2 y% q$ r. v+ G: d4 g% F5 W* y
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd  K. @/ }$ |$ `" e6 Y, d! J/ r
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd3 V8 o6 s9 U! j$ M  q
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">2 \1 O: c/ ]" ?$ R

    13. & z+ x' p1 F0 A( d1 y- [2 h
    14.         <description>Spring Configuration</description>
      . I+ Z3 E+ H. Z
    15.         
      6 N( n' ]$ h1 f* L% R
    16.         <context:component-scan base-package="task"/> $ R& ^- x3 {2 V, k7 Z
    17.         
      : ?6 d2 `. ~6 p
    18.         <!-- 配置任务线性池 -->- {- F- ~+ @& `2 D. [- S  G  w" T$ `
    19.     <task:executor  id="executor" pool-size="10" />
      1 e2 L3 e) K/ P; O# e; O/ E7 Y' |
    20.     <task:scheduler id="scheduler" pool-size="10"/>
      + I6 s0 M0 I6 k) x% o
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      5 c! w+ b3 N2 ?3 u
    22. </beans>
    复制代码
    ( Q3 k* }* A. t" M- ?

    % r8 A+ H5 N# @2 ~+ [6 D
    ( u4 H4 V) m! X' U基于配置的实现TestJob.java:
    " y! s  n2 _. |& w
    1. package task;
      ' c: Z  ^7 G( k
    2. ' B8 z7 N5 r- Y+ V; A* Q+ m
    3. import org.springframework.stereotype.Component;
      2 h/ p& T' P) F  g
    4. /**
      ( {$ `" c5 q9 R8 n! V2 G
    5. * 任务测试 科帮网 http://www.52itstyle.top/
      7 ]7 x6 u! V8 V9 V# v' E6 \5 u
    6. * 创建者        张志朋5 @  u* j# _! h# ~
    7. * 创建时间        2017年4月22日
      4 b% p" I8 x, U3 ]% i0 t) L, `
    8. *
      : t2 L& a$ P; N' ]+ {7 q
    9. */
      ' Z! @. K) H3 J/ S% t
    10. @Component("TestJob")  
      ( ~+ S8 j+ j: T. T' M
    11. public class TestJob {
      ) [  M7 {3 ~2 f/ m5 e5 N
    12.     public void test1()
      0 v9 l$ v7 K4 }" g; M6 L) B  [
    13.     {" w( J& k, k4 R! g+ O
    14.         System.out.println("job1 开始执行");
      $ q* q/ T7 |8 Z( R* A" R) t6 H
    15.     } + N( i2 l% K% C. u3 s% Y! w2 K- Q
    16.     public void test2()
      ( _7 B" E) l" z* o
    17.     {, a# M( p, H0 a
    18.         System.out.println("job2 开始执行");
      , u( h4 T% E2 t& \
    19.     } 0 ]/ A& [! o. f# s
    20. }
      % h/ R, ]3 ?7 j7 n! d
    复制代码
    基于配置的实现spring-context.xml:5 x3 k3 w# g! t' b. P
    1. <?xml version="1.0" encoding="UTF-8"?>9 Z" h1 R0 S+ F! K- Z6 c$ _
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      / \. k3 q1 z, ]$ d  `) A
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  - B; A6 ~$ b, D/ E" }- r0 ?
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"" Z& r. v& I2 i, ^1 c. ^, g$ W
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="8 N0 J( q1 Z3 h  F$ T! j! L6 \
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd& q  X& ^4 [5 S' |5 K" I, s' S: d( P
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      5 f7 n" S9 O, L: Z' Z/ l$ Y) l4 y
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
      , t1 E5 b; H0 _
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd9 d! J+ @9 v% T% ]5 I7 i
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd: ^" n7 p  Y. E; T2 _
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd1 o! F4 W$ I( I0 h' p0 Z2 L
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">* x- S" k! T$ C/ u# V
    13. 5 j( g/ t& `& X* m0 h
    14.         <description>Spring Configuration</description>
      8 Y2 @% D( N! P% o, N
    15.         6 M) A" q. x2 [3 h+ d5 _
    16.         <context:component-scan base-package="task"/>
      2 y" o( ]; |9 b9 V' }- }5 H
    17.         
      8 B7 z6 I& k0 }' [  C
    18.         <!-- 配置任务线性池 -->. A7 O( X: ^) ], d8 h2 G
    19.     <task:executor  id="executor" pool-size="10" /> - _0 E% u& q+ e! V9 T5 U! i% h9 ~
    20.     <task:scheduler id="scheduler" pool-size="10"/>: n4 u: v$ Y! X4 m$ J
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      # g0 m. z& O6 T4 u, P
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
      5 i# }3 L, [( J& ~  ^
    23.     <task:scheduled-tasks scheduler="scheduler">  1 F0 U; H1 q+ P( ?: k1 K$ Z4 O# G
    24.         <task:scheduled ref="TestJob" method="test1" cron="0/5 * * * * ?"/>  " S* c. w6 ^5 {5 G) E; X
    25.         <task:scheduled ref="TestJob" method="test2" cron="0/6 * * * * ?"/>  
      3 [; V  A7 A9 J
    26.     </task:scheduled-tasks>
      ( P3 I) p; P7 Y
    27. </beans>
    复制代码

    % i' i- b9 J. F4 ^
    ' ~! K' {4 t% X1 B, H3 B
    附:
    cronExpression的配置说明
    字段   允许值   允许的特殊字符
    秒    0-59    , - * /
    分    0-59    , - * /
    小时    0-23    , - * /
    日期    1-31    , - * ? / L W C
    月份    1-12 或者 JAN-DEC    , - * /
    星期    1-7 或者 SUN-SAT    , - * ? / L C #
    年(可选)    留空, 1970-2099    , - * /
    - 区间  
    * 通配符  
    ? 你不想设置那个字段
    下面只例出几个式子

    5 p1 [& @5 n( v- ]% N, m  F: A& @2 [
    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币)
    2 e- O+ q, V% ~+ N" |, D5 |/ S

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


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

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

       

    关闭

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

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