我的日常

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

动态微博

查看: 2264|回复: 0

SpringTask任务案例源码实现

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2017-04-22 14:46:31 |只看该作者 |倒序浏览
    写在开始; w/ \! U$ s" W8 a, u& }
    一般来说,无论是生活中或者项目中都会用到定时任务。比如我自己来说,每天晚上写一篇博客,当然这个任务的时间点可能不是那么准时。更多的例子,比如我们项目中数据的统计,文件或者数据库的定时备份等等。
    6 T+ u. S8 S7 \8 f3 z举个特别常见的例子,比如一些大型网站,首页的一些数据展示。有时候并不是实时展示的,可能是十分钟或者更久更新一次,来呈现给用户。
    $ T. I$ k0 K8 Q  x2 v' q& u5 e
    " m8 c3 x- b: u8 I; {: Y任务介绍
    + H  D3 x* S; H就目前自己接触的定时人来来说,这里简单的聊下一下三种:: O* H2 V6 f% x; T1 Q2 |
    , L6 a" J' \3 H' T% Z: N- t8 c
    1)java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。
    - S! T  u6 J2 U* `+ a; T8 Q" N0 `  \
    2)开源调度框架Quartz,这是一个功能丰富比较强大的的调度器,可以实现内存和实例化数据库的任务(基于配置文件的内存实现和数据库实现)3 Z( @" K6 \! W8 g' V! K. C

    % [) ~+ j, Q- _9 @# a0 s" s" l3)spring3以后自带的task任务管理,可以将它看成一个轻量级的Quartz,相对来说使用起来更加方便。
    # S" G/ [* V) f/ ^$ z7 M" M  F" _: j! ?! V% R+ y4 |! ]4 ~: Y
    使用案例( `2 P# t6 v' n* ]# V
    关于1,2任务这里不做介绍,后面会为大家详细介绍,这里主要介绍一下springTask的使用方法。
    9 A& n" e) {# t0 p
    $ G9 ]$ F0 a: ^- P这里使用的spring4.0.6版本,是支持springTask的 ,需要依赖spring-context-4.0.6.RELEASE.jar和spring-context-support-4.0.6.RELEASE.jar等等,后面会有源码提供。; c% B1 X* P& t1 ^  x7 n5 K9 g
    / a! Z& d1 {# W, Q, ]! U, w
    springTask提供了基于xml配置和注解的两种实现方式。; J2 H5 q; x6 W& p2 g! n
    ' _1 r/ ^% ]& x" f
    基于注解的实现TestJob.java:8 _+ f4 z. u# q' ]3 c
    1. package task;
        W" k3 \, }* N" h  {1 D8 [! X

    2. . x! f$ ~' Q9 r. o4 j* r
    3. import org.springframework.scheduling.annotation.Scheduled;
        E: e+ g6 j' m- |' L
    4. import org.springframework.stereotype.Component;3 O, m/ \, l5 d  e8 X
    5. /**6 k6 e6 k8 L$ P6 m- E( M/ E1 g! p+ J
    6. * 任务测试 科帮网 http://www.52itstyle.top/+ n4 I- {9 Q- ~( a7 S& g" ^% f/ Z
    7. * 创建者        张志朋
      9 H/ X" f5 F$ k, Z  N5 x
    8. * 创建时间        2017年4月22日
      # Z8 ^$ b: |: T. F
    9. *
      % E& r0 G- o( I' i
    10. */: v, w$ y9 ^& p) O8 E
    11. @Component("TestJob")  2 A0 M. U" P6 T
    12. public class TestJob {
      & ]; r" m5 r  B4 D, j. Q
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      * t& L+ ]( y% V% e% V5 @( l: L+ H
    14.     public void test1()
      2 |/ T) A0 a- e2 }( w
    15.     {
      ( L% X' Z( R+ ]3 l1 Z! E3 z
    16.         System.out.println("job1 开始执行");# {+ L  ~2 C( _  `  \! k6 _$ \- n
    17.     } % U0 y' n+ f9 @$ y1 a; ~
    18.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      0 A4 E( s% L. T% _0 `5 y
    19.     public void test2()+ n9 B) c- l$ U9 U; G! v+ [
    20.     {$ y9 N, q% x4 C) o" ?2 q
    21.         System.out.println("job2 开始执行");
      9 e/ u, m8 Y. Z* |( T' d$ q
    22.     } 1 k, g( H; c# I+ c5 E
    23. }2 C+ u: |- V5 k
    复制代码

    3 e3 g7 k  D2 C7 g4 a* D& D  V* S2 [( B
    基于注解的实现spring-context.xml:
    : u+ h* G: O, o8 T
    1. <?xml version="1.0" encoding="UTF-8"?>
      & V; ?( M  k# U- |3 Q
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  x8 S* g. P6 _% B4 {
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
      ' s6 X% B3 ]* r) ~6 g# o  N0 M
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      * o& I7 x  Z& e3 `
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
      0 ?3 v; l: v! q" L% r! y
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd4 N/ S# d5 J, B1 Q5 V
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      : ?6 ]: D7 D5 I4 g8 T* _7 z
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
      % M4 b+ k; [7 p. ^' u* ?9 P; H
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd1 Q% ?: K  n0 y( k% z3 e/ W
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      " \1 L( N% ~) t1 O! n
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd# c  E% t& |; m6 B  ~. k5 t
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      / L& b5 ~" `2 D8 O6 F) i! j. ^; p- j

    13. 0 ?7 x0 j7 j: J& B( ]# k7 M* d+ W
    14.         <description>Spring Configuration</description>" l" J" d1 R5 O
    15.         
      0 K8 G  n/ g+ a" f* q
    16.         <context:component-scan base-package="task"/> ' |2 n; t, k( E/ w7 [: z2 Z
    17.         
      ' e  G% n* A2 m
    18.         <!-- 配置任务线性池 -->
      # E, ]6 E4 Q' h
    19.     <task:executor  id="executor" pool-size="10" />
      $ E4 ?# Z1 _& |2 Q1 m7 {& A3 I' @7 C
    20.     <task:scheduler id="scheduler" pool-size="10"/>
      4 O3 _# }( z) p: e6 f) e' ^
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      ' n7 Q( O, d7 ~- ?' Y& p& o
    22. </beans>
    复制代码
    + i5 H$ [7 l3 o8 M: U. ?
    + x, J4 ~& c0 f# |+ R$ M
    ' Y1 ~# r. f4 D- w; r
    基于配置的实现TestJob.java:5 t: q* }/ A3 a7 d. {
    1. package task;
      $ g" e3 ~1 P3 V1 @

    2. . Z/ A1 \* P8 r8 j3 ^
    3. import org.springframework.stereotype.Component;
      % t  N( f: E: E2 H2 D0 t
    4. /**" o2 G  z8 X) c2 H0 U+ S- |
    5. * 任务测试 科帮网 http://www.52itstyle.top/
      3 a5 Y# G. K( C+ o% ]4 ]
    6. * 创建者        张志朋
      3 J7 q2 w: c' L4 k' \; p
    7. * 创建时间        2017年4月22日
      2 w' W5 R5 E1 `' N
    8. *
      ) e, C8 T, S( u
    9. */. D) |9 b( c$ f
    10. @Component("TestJob")  
      " a8 T! k4 {# D3 r  E4 ^% Z9 `
    11. public class TestJob {
      0 Z. i0 }, Q' ]" j
    12.     public void test1()
      $ P4 Y2 T& z, a$ O% S$ l1 ~  `
    13.     {  B3 o) x) \! j
    14.         System.out.println("job1 开始执行");( w/ V8 O0 Y, ]' S" N2 t8 p7 `9 b: B
    15.     }
      , ]0 `- L. m' m
    16.     public void test2()$ Y  h6 s" `: j1 F9 y6 H
    17.     {0 s: f: k/ S- r4 r
    18.         System.out.println("job2 开始执行");  |  [. l, D1 r) r7 b% U
    19.     } 3 h, d3 R/ G$ h4 f8 g/ @+ p6 i
    20. }
      1 Q- Q$ Z$ W$ ^3 u  t8 A0 {9 ?
    复制代码
    基于配置的实现spring-context.xml:
    : ]/ Y- L1 N+ s6 z8 p0 A
    1. <?xml version="1.0" encoding="UTF-8"?>5 K; p: G8 e* C
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      . c5 q- s% `/ V4 B$ h
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
      & h- C. c, i* ^
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      9 z; L1 t5 {) i8 g/ U" d, [- G
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="- p! J  t; v6 w
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
      : S. t" u% b/ M4 h
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd) W8 }- k1 o9 C
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd% N' a6 j' T+ c
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
      ) {! W1 g2 s6 |! ?$ A
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      - b+ v, c# T# T6 S, T
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd
      0 f4 a! a( u. C+ H/ }
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">; |& G- D: C8 Y" n

    13. . D1 v0 A8 E: a
    14.         <description>Spring Configuration</description>2 z4 J: A4 P; {+ X: Z) t. i4 g# {
    15.         
      ; ?! q, e! L8 ?1 Z9 z1 m
    16.         <context:component-scan base-package="task"/> 0 N5 _+ k; p: q- k; x- x' W
    17.         , T  k8 S  r, |
    18.         <!-- 配置任务线性池 -->
      - W6 O+ F% \3 n
    19.     <task:executor  id="executor" pool-size="10" />
      7 ]! H6 K" ~3 Z/ O
    20.     <task:scheduler id="scheduler" pool-size="10"/>8 [; g5 W( Z0 B5 _( Y
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/># `& K- R2 `; @$ K7 y
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
      4 H( h8 H# m/ t/ J6 Y/ [7 O5 p, |
    23.     <task:scheduled-tasks scheduler="scheduler">  % Q  c* A8 x3 Z6 D1 |& C
    24.         <task:scheduled ref="TestJob" method="test1" cron="0/5 * * * * ?"/>  - F# u' \7 p. {4 u% Y4 v8 |6 T6 ~' |% B- i
    25.         <task:scheduled ref="TestJob" method="test2" cron="0/6 * * * * ?"/>  0 T) v, L: Y/ r: r) x( l( D
    26.     </task:scheduled-tasks>
      1 [6 m0 y' y3 W1 `. h' m# m2 L
    27. </beans>
    复制代码
    / m5 z! k( W4 K
    ' G6 v# c5 ~) y3 T
    附:
    cronExpression的配置说明
    字段   允许值   允许的特殊字符
    秒    0-59    , - * /
    分    0-59    , - * /
    小时    0-23    , - * /
    日期    1-31    , - * ? / L W C
    月份    1-12 或者 JAN-DEC    , - * /
    星期    1-7 或者 SUN-SAT    , - * ? / L C #
    年(可选)    留空, 1970-2099    , - * /
    - 区间  
    * 通配符  
    ? 你不想设置那个字段
    下面只例出几个式子
    * V" D2 e: {1 e2 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币)
    - U5 x( A7 y2 t; i

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


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

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

       

    关闭

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

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