我的日常

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

动态微博

查看: 2480|回复: 0

SpringTask任务案例源码实现

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2017-04-22 14:46:31 |只看该作者 |倒序浏览
    写在开始- G' Y  U' s: }. f
    一般来说,无论是生活中或者项目中都会用到定时任务。比如我自己来说,每天晚上写一篇博客,当然这个任务的时间点可能不是那么准时。更多的例子,比如我们项目中数据的统计,文件或者数据库的定时备份等等。5 S! l0 c) z1 G6 @9 \1 E( _/ y
    举个特别常见的例子,比如一些大型网站,首页的一些数据展示。有时候并不是实时展示的,可能是十分钟或者更久更新一次,来呈现给用户。+ Y2 f0 n3 Q7 J2 ]+ v) k8 G) f

    , ?. w3 \) @- f4 a! ~$ i任务介绍2 p: V; b+ P! C/ x
    就目前自己接触的定时人来来说,这里简单的聊下一下三种:
    ( x( \6 L8 t# q7 T, ]& }  v5 d' K7 C4 j2 K6 _7 {0 m
    1)java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。
    & Z+ z9 l. `1 X- T9 N9 d6 G2 Q4 O* A. D- G
    2)开源调度框架Quartz,这是一个功能丰富比较强大的的调度器,可以实现内存和实例化数据库的任务(基于配置文件的内存实现和数据库实现)
    - ?: f9 |0 ?9 ]  N$ V3 L9 `+ A' O' t  e
    3)spring3以后自带的task任务管理,可以将它看成一个轻量级的Quartz,相对来说使用起来更加方便。( F( E1 x8 B7 c2 f* v4 W

    / K8 Y. h! |0 s/ C' F) h使用案例6 ~. T' z% A$ I: e
    关于1,2任务这里不做介绍,后面会为大家详细介绍,这里主要介绍一下springTask的使用方法。
    7 j8 O* p. I) i$ o. X3 g6 w5 @; Z' x7 s- N4 F& U$ s
    这里使用的spring4.0.6版本,是支持springTask的 ,需要依赖spring-context-4.0.6.RELEASE.jar和spring-context-support-4.0.6.RELEASE.jar等等,后面会有源码提供。
    0 t5 D; f, @9 A0 \! n& _
    * N3 p5 X- V$ [- k, ~; [springTask提供了基于xml配置和注解的两种实现方式。
    # N2 i% u# E8 F: m
    4 r: ^. _& B1 W# t9 k( }基于注解的实现TestJob.java:
    2 X6 y7 S( t% @0 j. w; m
    1. package task;
      9 b) x9 L+ R! B" c5 ?, b# P! G
    2. 8 x6 C4 q, J6 U% k0 p5 t, i
    3. import org.springframework.scheduling.annotation.Scheduled;
      9 E2 H, h4 C6 |; @7 T' S2 [
    4. import org.springframework.stereotype.Component;
      3 ~  d0 `* g1 A  ?0 z  t3 o" O
    5. /**
      . h$ J) o8 k' r7 I) C
    6. * 任务测试 科帮网 http://www.52itstyle.top/
      . ?7 I6 n! M0 V$ \" m
    7. * 创建者        张志朋4 k9 {6 s* Y  h. N
    8. * 创建时间        2017年4月22日
      2 H; U$ Z1 x# ^. e
    9. *" B9 ]/ K2 O* A( w8 e4 }
    10. */
      9 t" S7 \" v2 A: S5 N. C
    11. @Component("TestJob")  % P) \: W9 b: E5 H
    12. public class TestJob {
      0 g  W) y0 Y. K1 ?% g+ E1 V
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次 % _! b1 {, I1 g8 n
    14.     public void test1()
      ' b9 z$ B( H5 @" }9 g0 U  b
    15.     {. X; Q! U6 Q! g, k) V
    16.         System.out.println("job1 开始执行");5 a! L5 Z6 I+ T0 s6 F5 B) n+ R: A% r, P2 o
    17.     } - l  b+ b% f/ d8 I2 W' r7 q
    18.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      % G( Q' i3 p3 Y; n; \- Q' R
    19.     public void test2(), t' e9 F) G+ s5 |8 O* G8 P
    20.     {
      - h- ~4 ?6 S- K- }
    21.         System.out.println("job2 开始执行");9 ]) \- D3 e' L8 }
    22.     }
      # b6 ]3 P# w2 Y) {2 ^' \8 g3 u
    23. }
      $ X! a  ^9 G8 _$ b* o# S
    复制代码
    9 Z" q$ A) L+ ~; V+ k
    8 C) h* C" P, e, i, ^7 O4 {
    基于注解的实现spring-context.xml:; u  v" X* ]. p& g: }9 K% c6 z0 i" F
    1. <?xml version="1.0" encoding="UTF-8"?>
      5 c) R* v( g" ?, H
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"4 ]1 h4 S: i( W$ z; t
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  * i' F5 ?# D6 J/ E: X4 V
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"' K3 P* f, I5 Y; d9 T
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
      : E, K5 Y2 R+ K* _& c# r
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd3 }" D, @. H; |" n1 s. Y
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd. @2 U" r3 ], t7 w4 p5 i
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd& F; q4 H' G# m1 M6 j% Z
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
      + u: {7 Q0 k* i" N3 M) \
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd: Q( U# H6 l1 c: g
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd
      ' u/ E) T6 U- a8 W
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      0 T1 i- Q, w3 i4 p& W; {, ~
    13. 9 s9 M/ t: }) H# q1 x, u% G. W
    14.         <description>Spring Configuration</description>
      % @& G  }5 }& s) o, A" ]- f
    15.         8 j) s2 P0 ]" e+ {# I" \/ l6 ^& }
    16.         <context:component-scan base-package="task"/>
      - [  {5 I" O4 Y- h
    17.         9 v4 @4 T7 ~; h. x
    18.         <!-- 配置任务线性池 -->
      : u: k5 K# ^! Q8 h. w1 P) Z5 i
    19.     <task:executor  id="executor" pool-size="10" /> 1 S; P& L+ l0 G; _) `8 p
    20.     <task:scheduler id="scheduler" pool-size="10"/>9 m" u6 _9 h# v# u( [7 w  M# y6 |
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      ; f5 f9 c9 d# V* V( V
    22. </beans>
    复制代码

    : ~# X5 k* ?9 |8 C# o& d* @, A9 G3 z( T, d8 O' r" ]
    ) G% o; K- T# T0 v+ U; U6 ?: f
    基于配置的实现TestJob.java:8 W5 i" J4 O1 R
    1. package task;
      1 `2 h7 v4 S2 w5 b

    2. $ C3 o1 P, Y/ n  a5 ~
    3. import org.springframework.stereotype.Component;
      1 A1 m- k- \/ E4 n/ u2 S
    4. /**
      9 v* Y6 O7 J4 F
    5. * 任务测试 科帮网 http://www.52itstyle.top/2 v1 j9 Z/ E2 k/ j
    6. * 创建者        张志朋
      , B" {: W  l" W9 @
    7. * 创建时间        2017年4月22日
      ) L: \+ i; Y9 b( t) W, p+ l
    8. *
      1 Q) p5 [& `: d
    9. *// t' l' c! a3 V
    10. @Component("TestJob")  3 I4 R5 h& p: Q' F5 B  C* h
    11. public class TestJob {
      2 m5 K  ~* j8 t# _3 ]* ~" U
    12.     public void test1()
      $ l- i, P, _& H$ }" @( G7 g% h
    13.     {
      4 Q/ Q. [, b3 G8 a; F
    14.         System.out.println("job1 开始执行");( E/ F2 d9 B5 V2 _4 O
    15.     }
      ; d4 D* Q# u( ]: A. \3 f' k2 M
    16.     public void test2()! m1 |" n" q6 N5 u2 o9 t
    17.     {
      4 {" x6 m0 z) V7 e- ^. R5 U
    18.         System.out.println("job2 开始执行");. B2 S+ ~4 u# X, V' f2 ^
    19.     } 3 i% K" z0 H% U* V# u7 r
    20. }: ^% C$ u: _# ~1 X, r- Z) e2 H6 u
    复制代码
    基于配置的实现spring-context.xml:
    3 \' z0 h  {7 y: h4 c1 S9 @; K, t
    1. <?xml version="1.0" encoding="UTF-8"?>
      . o5 O3 X' h3 g; m6 ^
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      / L9 I+ s7 ^0 X) B4 c+ d
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
      ' ^% z5 L+ p2 w# e, \( @
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      & s* @, e; \" I& _9 W4 R! [. t
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
      ) {/ D; \* R9 j$ h
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd& K( {* ~; t+ z$ f$ P0 y+ k2 M
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      6 H( `8 W: c6 M
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd8 t1 Q0 e2 v0 q! ]. O/ x% v
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
      8 P! B- W  [( U0 B
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd; J: A7 t6 x5 U  }
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd. S2 t# ]& S; }3 y7 Y4 a
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      - X+ u8 {# N5 L1 L) e6 [# d

    13. , T6 b5 O9 @2 E2 k! C
    14.         <description>Spring Configuration</description>
      : o& I1 F" }0 \& b
    15.         
      9 J) x- w& v2 T9 _( u
    16.         <context:component-scan base-package="task"/> & R- M2 ^" J6 A# M6 l1 A
    17.         ! f. e& ]5 f( Z2 v: h: _  m
    18.         <!-- 配置任务线性池 -->  Z" [( \; u5 U; B
    19.     <task:executor  id="executor" pool-size="10" />
      2 q9 }7 N4 {1 n- H2 ~& e
    20.     <task:scheduler id="scheduler" pool-size="10"/>
      , D" ?- L9 N1 i' U2 v" S
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      8 G! S& |/ A+ W
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
      + B8 Q4 F' A  o8 a
    23.     <task:scheduled-tasks scheduler="scheduler">  & {4 G7 E% t" n" g- u. i
    24.         <task:scheduled ref="TestJob" method="test1" cron="0/5 * * * * ?"/>  . s5 C8 K& h2 [5 n! G% M* a# l
    25.         <task:scheduled ref="TestJob" method="test2" cron="0/6 * * * * ?"/>  
      . S4 ^% Z3 v; K  P# G, V3 I
    26.     </task:scheduled-tasks>
      ; w# \' x0 l* h& ~% k1 `- j6 L$ \/ H
    27. </beans>
    复制代码
    2 d" l  _3 x; }9 C1 N/ Y8 B6 k9 G

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

    6 v; x. ]1 z3 V0 g- @" I% z, }
    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币)

    ' o0 w* G+ o, ~$ a, I

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


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

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

       

    关闭

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

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