我的日常

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

动态微博

查看: 2265|回复: 0

SpringTask任务案例源码实现

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2017-04-22 14:46:31 |只看该作者 |倒序浏览
    写在开始5 X& |( I: h( o
    一般来说,无论是生活中或者项目中都会用到定时任务。比如我自己来说,每天晚上写一篇博客,当然这个任务的时间点可能不是那么准时。更多的例子,比如我们项目中数据的统计,文件或者数据库的定时备份等等。
    - m5 l; a' _1 M举个特别常见的例子,比如一些大型网站,首页的一些数据展示。有时候并不是实时展示的,可能是十分钟或者更久更新一次,来呈现给用户。$ Y& R' |, [, u* [) ]6 U2 {

    4 B: z% r- B3 h( t+ S( d7 ^' U; N任务介绍0 o1 `" z$ Q! T
    就目前自己接触的定时人来来说,这里简单的聊下一下三种:# t- x7 [! _' d

    : U% k) z2 a: n' Y* M0 A0 j1)java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。
    ' Y9 N; J$ n. F% ~. L8 `6 @0 f% b
    ( y+ r5 x- _; d! P2)开源调度框架Quartz,这是一个功能丰富比较强大的的调度器,可以实现内存和实例化数据库的任务(基于配置文件的内存实现和数据库实现)* Q  V" _1 H( I" L) N

    0 s2 |6 h" w8 a6 W3 S! {' S3)spring3以后自带的task任务管理,可以将它看成一个轻量级的Quartz,相对来说使用起来更加方便。' Z& ]; f8 j( r* ?* H- s/ y
    % r# e: X  q8 C* [
    使用案例. k1 U: g$ n, g; ~1 j7 Y; Q/ ~
    关于1,2任务这里不做介绍,后面会为大家详细介绍,这里主要介绍一下springTask的使用方法。
    * q) R0 h5 G- e9 j1 Q! m0 D' J& D5 S/ U( g6 N! s- ~# x
    这里使用的spring4.0.6版本,是支持springTask的 ,需要依赖spring-context-4.0.6.RELEASE.jar和spring-context-support-4.0.6.RELEASE.jar等等,后面会有源码提供。
    & J- U4 e% M; y. X3 ]6 l1 H# X8 d0 _! {- M, ^- M
    springTask提供了基于xml配置和注解的两种实现方式。
    & ?) f, ~2 I& H7 R! H3 P, E$ L, Z
    9 r# C0 [% _" D4 H6 B: N基于注解的实现TestJob.java:  M  [/ ~8 o8 g1 `7 I/ m  @  p+ I
    1. package task;  C, o" q- {1 Z7 M7 w' Z

    2. ( N, @* g; t  C+ ~. v
    3. import org.springframework.scheduling.annotation.Scheduled;0 S  r" s% {! d' o2 r
    4. import org.springframework.stereotype.Component;
      8 m4 p9 |! f/ N/ Z% B" V* ~( E
    5. /**
      ( P2 y! l, a7 i  Q7 g1 b8 M
    6. * 任务测试 科帮网 http://www.52itstyle.top/, r% F' J$ F/ v1 S
    7. * 创建者        张志朋
      3 t* M  J" s( G# i1 u
    8. * 创建时间        2017年4月22日
      ) U: _% T8 |9 W$ ~2 T/ u
    9. *
        R( U' R+ R7 j2 Z
    10. */
      8 d! C0 I5 o6 `5 J
    11. @Component("TestJob")  8 p2 S9 W1 l" Q9 p) F; {
    12. public class TestJob {/ d! y6 g+ G8 K5 ]
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      * Z) E% y9 D2 G% i
    14.     public void test1()
      ' P& x$ X' |% m7 Z( E  j
    15.     {+ P4 I/ W$ p( D/ p/ U
    16.         System.out.println("job1 开始执行");
      , d8 L" [9 j( t* o2 h
    17.     }
      # @6 W6 M( {( a
    18.         @Scheduled(cron = "0/5 * * * * ?")//每隔1秒隔行一次
      ; V# ^1 y+ ~, n0 s* |, v' R
    19.     public void test2()
      2 H8 C, D% j' [' I' ~# L9 O& P5 `! p
    20.     {; U' n, B% k8 f5 Z, _8 U7 S
    21.         System.out.println("job2 开始执行");
      9 R( T- T0 F6 ~) B
    22.     } 4 d* }. m. t  }
    23. }
      , O$ Y: a& [8 F
    复制代码
    6 }" z! p% K5 I4 L
    4 F0 O( ~  m+ X6 j0 Q& F2 E" [
    基于注解的实现spring-context.xml:3 q0 z4 P* J0 a
    1. <?xml version="1.0" encoding="UTF-8"?>
      4 h1 g7 L" O# Z9 z" d% E: ]+ Q
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      7 A( I; e1 X* V5 Z* F
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  + J& N3 G( W$ N1 W/ @% x; c: `
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      6 N' L& a& `0 J. K
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
      9 d. d/ g' G3 q
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd+ B- X% T' s6 ]  A+ i/ Y
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd. E# u+ M' P% G; ~8 Z2 ]
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
      7 X5 N1 f7 O) _9 v
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd& {/ V8 V( U0 d' R" y/ Z! O' W
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      , D- M2 a  y0 n  O8 ~
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd
      ) V  f0 z. a& [$ P, C
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
        n- l# q) m& }. A7 t  @
    13. ' _* D! V, n, o. x" h+ b4 n( T
    14.         <description>Spring Configuration</description>  S+ f" h: U0 X' U& A9 f: H
    15.         6 G$ z6 V2 g; N4 z' A0 S
    16.         <context:component-scan base-package="task"/>
      ! W; f/ V6 s; X- V+ j% v
    17.         
      2 \( D4 A! E- {. k
    18.         <!-- 配置任务线性池 -->
      % Z( T5 d2 ^9 L3 p; [
    19.     <task:executor  id="executor" pool-size="10" />
      $ j) v5 M% }, K3 Y
    20.     <task:scheduler id="scheduler" pool-size="10"/>. a( C' s1 g% a" P) o
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      ' v! a: P; ^# i7 v& G" {; P3 y
    22. </beans>
    复制代码
    . K+ C4 O' S: M; s( ], ?

    6 s0 u' Q8 J/ a) ^! G. x9 x: `) [
    # W% `$ r& s. Z# r基于配置的实现TestJob.java:
    ; B/ Y2 G7 X7 f3 w
    1. package task;
      ( ]  m& t1 j* X% ]/ P

    2. , O4 h4 q3 _) H# l
    3. import org.springframework.stereotype.Component;
      ; _  g7 |; _# l4 A+ P
    4. /**
      7 k2 |, Z# G0 Y7 B* _1 I
    5. * 任务测试 科帮网 http://www.52itstyle.top/1 f: k+ J" H  n3 j! z2 x- g" j+ D
    6. * 创建者        张志朋. R% A& v! N% ?# v# r" ~5 T' `
    7. * 创建时间        2017年4月22日7 m8 U/ K3 U: R7 j$ E$ i# L
    8. *
      ) g0 B7 x" ~" \# P; f- f* C3 o
    9. */
      ; Q% ^. g* q% y# T9 t( e8 p
    10. @Component("TestJob")  2 J- F0 q2 ~. f- G
    11. public class TestJob {
      ) q1 y  k5 l' H+ ]) }1 w9 z
    12.     public void test1()
      4 B0 i4 r8 c- A3 m' I
    13.     {3 H9 g6 K3 [6 {
    14.         System.out.println("job1 开始执行");
      1 M" a) M' a* |, {2 u
    15.     } 5 J$ l" N8 q$ s1 e1 R* G
    16.     public void test2()3 `# f  J- R$ M  M1 c2 C- d* \
    17.     {
      + r  {  q1 e4 ^  N
    18.         System.out.println("job2 开始执行");
      - V+ B$ `' p$ i+ z2 d- }
    19.     } & i2 T- s7 u" z
    20. }4 J3 o" R4 O$ n& y3 R$ x% V- y
    复制代码
    基于配置的实现spring-context.xml:
    0 O0 _& u% s7 g1 f  f
    1. <?xml version="1.0" encoding="UTF-8"?>- l0 p+ ^. n1 B0 i4 v1 F
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      % S2 F) `( z  V, m
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"    u1 w, m" z7 r: M7 r
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"2 Z8 n5 V. t) ]
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation=", M7 J% X! y, Q$ S6 Z# P; e
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
      * S4 _; g( z3 s9 [$ z: k6 x5 @& @
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      ( V) x8 h5 D  d5 Y5 n, r. X
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
      9 _' b1 B+ o8 z/ y: d, G, P
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
      2 `& I2 I( s4 N, w4 Y  a( g8 ^
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
      " c; ^  q8 f; U
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd
        u1 A; w5 Y7 P# p' Y2 `3 o' ]3 {
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      6 m) g: a  N* _- f4 |# B' K
    13. ( ]* [: C& b8 e1 @
    14.         <description>Spring Configuration</description>
      8 x# l9 u( X( F4 i
    15.         
      ; n, `6 y8 G/ j6 V6 i: I3 R5 K7 x
    16.         <context:component-scan base-package="task"/> + x8 K3 n) g5 f6 _. O$ i
    17.         
        @+ ~* C- A' z" w9 B
    18.         <!-- 配置任务线性池 -->
      7 Z% y$ p5 Z7 M# O4 h: [0 \& f3 g: C
    19.     <task:executor  id="executor" pool-size="10" />
      4 X- d/ S) u/ `; @+ v- M
    20.     <task:scheduler id="scheduler" pool-size="10"/>: ^! R! Q2 I8 s2 }
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>0 X5 y8 w0 Q- M0 W
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
      ! b  }$ C8 r2 \8 `7 N8 A. J( E* g' G
    23.     <task:scheduled-tasks scheduler="scheduler">  
      8 O# ~: X; p% p3 u# \
    24.         <task:scheduled ref="TestJob" method="test1" cron="0/5 * * * * ?"/>  
      ! _  {8 f8 a1 l7 Z0 z
    25.         <task:scheduled ref="TestJob" method="test2" cron="0/6 * * * * ?"/>  5 C4 ~; b2 X: @; G* A1 K) l5 _
    26.     </task:scheduled-tasks>
      6 @( U! \5 G% c2 w9 }! t- t' `8 @2 J
    27. </beans>
    复制代码
    3 f# Z8 c4 Q" A
    . }3 `; b9 p1 b3 a3 T9 D' 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    , - * /
    - 区间  
    * 通配符  
    ? 你不想设置那个字段
    下面只例出几个式子
    7 Q7 u9 @! G' L* q; _+ t; n
    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币)
    3 ~8 M& Y4 K1 o- m" [4 J

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


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

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

       

    关闭

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

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