我的日常

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

动态微博

查看: 2208|回复: 0

SpringTask任务案例源码实现

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2017-04-22 14:46:31 |只看该作者 |正序浏览
    写在开始
    8 \( j/ e* ~' F; q# q3 t* |% N! p一般来说,无论是生活中或者项目中都会用到定时任务。比如我自己来说,每天晚上写一篇博客,当然这个任务的时间点可能不是那么准时。更多的例子,比如我们项目中数据的统计,文件或者数据库的定时备份等等。$ `# j1 b3 m# l, Q% }$ [3 j
    举个特别常见的例子,比如一些大型网站,首页的一些数据展示。有时候并不是实时展示的,可能是十分钟或者更久更新一次,来呈现给用户。, m: J4 x  ^  ?4 A

    7 _7 }! }7 f0 g1 Y% {& c5 F+ W: h任务介绍* W1 \. k4 a& |2 \' P6 o2 g
    就目前自己接触的定时人来来说,这里简单的聊下一下三种:* d& @  a4 {; g
    ) F' Z  d( y# j7 n
    1)java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。+ N# q5 q2 `( w) }: Y

    9 x( {& T2 l+ q: g7 b2)开源调度框架Quartz,这是一个功能丰富比较强大的的调度器,可以实现内存和实例化数据库的任务(基于配置文件的内存实现和数据库实现)9 w. e" P) \" t9 v; ?/ C9 L
    1 `9 _0 T  v4 L: n3 h7 |
    3)spring3以后自带的task任务管理,可以将它看成一个轻量级的Quartz,相对来说使用起来更加方便。1 A" q4 J% T2 Q. W; R" `3 `

    ' _/ N+ Z$ j% S% a$ Z- ]8 F  S使用案例+ Z$ ^% E' L2 r: u
    关于1,2任务这里不做介绍,后面会为大家详细介绍,这里主要介绍一下springTask的使用方法。
    ( M4 Z/ |( j% Z3 h( J) ?8 L
    . f) u. M5 ?$ I5 G  n5 a5 `. U6 K这里使用的spring4.0.6版本,是支持springTask的 ,需要依赖spring-context-4.0.6.RELEASE.jar和spring-context-support-4.0.6.RELEASE.jar等等,后面会有源码提供。, l' _5 j  a' C) N8 V6 Z7 n

    1 b3 X) f0 |! Z+ d- G+ D1 c% A. DspringTask提供了基于xml配置和注解的两种实现方式。
    ; M6 |/ E1 K% g7 u  o$ o- ~! U" p5 b& ^- l2 o( p# _, M6 A
    基于注解的实现TestJob.java:- I- r) a8 v; n9 \1 j5 I' p; J
    1. package task;: [% L, x9 F3 \/ ]% U4 y% M
    2. 8 ?. w" V/ ^& E
    3. import org.springframework.scheduling.annotation.Scheduled;
      6 m* }1 m: h; I" f* @5 }
    4. import org.springframework.stereotype.Component;3 A! v* D% @5 C. }& ], E5 d
    5. /**
      $ E2 \9 ~2 S, K/ M. h) A% L0 k
    6. * 任务测试 科帮网 http://www.52itstyle.top/
      ( ]! i5 ?( b, F2 ~& \) g
    7. * 创建者        张志朋6 B+ {# e  \3 `$ r
    8. * 创建时间        2017年4月22日/ t; f3 l$ J1 {
    9. *2 {4 |9 }% j8 J' v
    10. */
      ! g2 v5 b  u; i* \' Z! d( w
    11. @Component("TestJob")  # e2 s6 C0 ^5 n( o& Y0 x, W
    12. public class TestJob {
      0 t' ~3 T9 `' Z3 Y# ^3 l) I. i. f1 w
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次 & a. R1 }# K- _& f  T6 e( n
    14.     public void test1()
      + N5 ?0 t5 R- I! Q: [9 }
    15.     {
      1 \4 s" c1 _  i3 _* E! D
    16.         System.out.println("job1 开始执行");
      ( m8 N) j3 R( k$ M; c3 Q
    17.     }
      2 x+ D2 V9 L! U# T8 ?
    18.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      3 |$ h, i. I/ j) R0 ~$ }
    19.     public void test2()
      + r  T% o6 \: d6 D+ i% _& N. ~
    20.     {
      4 J0 ~( Q& s4 Y: \) ^
    21.         System.out.println("job2 开始执行");8 e6 }2 R# o8 z5 B
    22.     } ( b# P! s& S0 b" ~0 G
    23. }/ n- r5 M+ R, `% P9 A
    复制代码
    $ i( W6 u4 O3 r

    7 c$ |, \! ~5 E& ]* P  J基于注解的实现spring-context.xml:; O, R' c% a( f
    1. <?xml version="1.0" encoding="UTF-8"?>
      " p8 _- t, b7 n. x9 J( k
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"9 r+ b% [  z( h" R' ~$ W
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
      ) E, Q2 Y+ C: a0 Y# l. I2 I
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"# R" V; Q- J6 W# h: g
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
      5 O& `  @) x: _) H0 v
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd; z  q% @. Y$ X  n& }6 u0 X; q% C* w
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      ( |0 i0 U. g0 u. a5 d
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
      8 u% U3 f: c, X$ S( \
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd. D% J8 E6 g  [# |7 V4 T
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      " f  u! S" y+ h, I+ A
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd, ]- X$ e& r- V- }0 V7 Y6 L
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      , y1 r: K8 o' D# j) S4 Q6 `! s

    13. ; c# o! C' m1 |9 S
    14.         <description>Spring Configuration</description>
      3 j% j5 x' y( O! A
    15.         
      - R/ G) t  W+ h( C: a2 E  _0 M! {
    16.         <context:component-scan base-package="task"/> 7 A, g; r! _9 M) a: \6 L
    17.         
      + x6 X! |6 t! [' V" }
    18.         <!-- 配置任务线性池 -->
      / l( K5 {) \) F' {- U, x
    19.     <task:executor  id="executor" pool-size="10" />
      " M# V3 J+ e1 d
    20.     <task:scheduler id="scheduler" pool-size="10"/>
      " V; ?; z2 F6 @" T: H
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>, H7 Q) m4 U5 V6 O
    22. </beans>
    复制代码

    5 Q, h5 u4 f% h7 }8 k( A" j# G* M) n) M# [9 W1 \; a

    2 v0 I6 f. O1 \7 O3 ?0 K: p* Z3 f基于配置的实现TestJob.java:' b  c& n0 j4 |. v' X8 A
    1. package task;
      # g9 Y" U: R+ s

    2. * Z! A: B7 R# a9 X
    3. import org.springframework.stereotype.Component;: R7 F; h' y  a4 G% D
    4. /**
      ; j) ^1 k5 O' T# G! x* @$ S* p
    5. * 任务测试 科帮网 http://www.52itstyle.top/
      " p; b( p  V# R! ~1 X2 a
    6. * 创建者        张志朋# O+ l9 i7 `0 T  f0 k
    7. * 创建时间        2017年4月22日
      + ]4 T) V. b5 i! E; a) T; N/ V
    8. *
      8 X, Z/ D  E; s
    9. */
      " ~+ }: |) C0 u0 D1 P0 G
    10. @Component("TestJob")  
      3 F7 s9 P  Q0 r  Z
    11. public class TestJob {7 g0 C- X3 e, S$ j- {& V# e4 ?
    12.     public void test1()  C/ C  x0 E# {3 d6 D7 V
    13.     {+ Y4 j/ u9 d" G* F7 H6 U
    14.         System.out.println("job1 开始执行");: c5 h, y6 S, `7 S& u6 B
    15.     }
      . l  x! l# i  l# {
    16.     public void test2()- O; ?; z" [1 ?4 M- w
    17.     {
      # {  Z# J$ a1 a; Q' V9 b
    18.         System.out.println("job2 开始执行");
      & k# W1 b1 a9 Z! b" n' N& L+ `- Z' k% h
    19.     } / \! x" B. t* x$ ^% ]
    20. }  t' W7 t6 i& X( r$ J- d
    复制代码
    基于配置的实现spring-context.xml:% N- C4 s- M3 W* D. U5 R+ X- R# z
    1. <?xml version="1.0" encoding="UTF-8"?>
      % {: t; R9 X. [: f6 _' u# k, s) O1 @9 l
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"- D- z8 ]" Y1 b, v+ K6 {
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  ( b0 g0 g/ b8 M( ?1 `! w4 c; K
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"4 a' |5 n. V, r' Z7 ]$ H" T
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="& X: G# s4 j2 [* O1 V: C3 j
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd% X, f3 G0 ~: V6 T; b! B
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd- e' p8 s. H! q: H  ]' o
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd/ M! A8 {" P2 f9 ?# X* Y0 o0 m5 p
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd+ r! ~& R! @( X) F
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      $ B/ a+ M0 u/ h' N- |! o( O. E/ G
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd5 I% @9 h) l. W/ \+ ^. F
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">/ ~% L6 }- U$ v3 h$ X8 u% }/ E) u

    13. 7 v) G% e" V$ V/ D; s/ g
    14.         <description>Spring Configuration</description>
      4 S$ ^' M; e4 \# n- u
    15.         2 n/ e8 Q5 h! n1 j0 w1 u( C
    16.         <context:component-scan base-package="task"/>
      ' B. @! Y) s* k: G
    17.         " |9 N( O: j9 F) @; x7 i# m
    18.         <!-- 配置任务线性池 -->0 q# O& p/ W$ s, m7 A( [
    19.     <task:executor  id="executor" pool-size="10" />
      , F1 I7 n$ @! K& h9 B" H
    20.     <task:scheduler id="scheduler" pool-size="10"/>
      : V) l) a; ], u2 s- r
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      5 [. J7 q1 V3 P  y0 d7 D. i
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
      4 {0 J  @! Z% B1 u3 c$ ~
    23.     <task:scheduled-tasks scheduler="scheduler">  
      ( o. }& H; a8 {% K" r5 c# U3 \, U- ^
    24.         <task:scheduled ref="TestJob" method="test1" cron="0/5 * * * * ?"/>  
      : L- A- }' n! _3 g
    25.         <task:scheduled ref="TestJob" method="test2" cron="0/6 * * * * ?"/>  , E" H7 J' B8 I0 J
    26.     </task:scheduled-tasks>
      % ?5 G1 q. \+ ]% K2 n
    27. </beans>
    复制代码

    % s1 n/ x/ _' q+ T# y& q# ~, L  _/ C' j
    附:
    cronExpression的配置说明
    字段   允许值   允许的特殊字符
    秒    0-59    , - * /
    分    0-59    , - * /
    小时    0-23    , - * /
    日期    1-31    , - * ? / L W C
    月份    1-12 或者 JAN-DEC    , - * /
    星期    1-7 或者 SUN-SAT    , - * ? / L C #
    年(可选)    留空, 1970-2099    , - * /
    - 区间  
    * 通配符  
    ? 你不想设置那个字段
    下面只例出几个式子
    % l8 b1 o( V' \3 |! f
    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币)

    4 I. N8 R0 @. X! t( Q! @

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


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

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

       

    关闭

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

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