我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 项目源码 > SpringMvc自动任务调度之task实现项目源码
总共48087条微博

动态微博

查看: 3157|回复: 1

SpringMvc自动任务调度之task实现项目源码

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2016-07-15 11:10:31 |只看该作者 |倒序浏览
    前提注意:配置文件中如果 default-lazy-init="true",删掉或设置成false,不然注解会失效(这个坑找了好久)。
    ; M  p& s, \( R! Q! {! t" u5 q一、说明          x4 J  b- ^  m! a) R

    1 |9 ^- n" n9 C& k         以前项目一直使用Quartz的定时任务,虽然其功能强大,但是配置文件极其复杂,并且一个class下只能执行一个方法(貌似是)。定时任务多了以后对于维护xml配置文件时一件极为头疼的事情。7 M& E% {$ t4 h9 N, ?# C
    3 t6 d# ~; e  D; g+ o! ~9 ^

    4 O8 ^1 X- {6 Z        前段时间把Quartz整合实例化入数据库了,做了一个任务列表,进行增删查改,的确是简单多了。在项目不重启的情况下可以对任务进行各种你想要的操作。如图所示操作:
    : ~) o$ Z- ~7 g" t  c

    ) S; x% I. a9 C: `2 z; p. }
    # g7 Y( y1 Q- h  s* D
    9 g' q8 q; Y6 J! B
    3 S) S( ?+ @3 z3 z+ j
            但如果只是简单的跑个任务其实spring升级到3后已经自带任务调度器了,相比之下Spring task无论是理解还是使用都简单很多。但是Quartz有线程和线程管理以及集群等高级特性,所以大家可以自行选择了。不过一般情况下,觉得SpringTask足够了。4 C  o8 u$ q# A! H3 L
    9 I( @5 @9 V' ?" ~0 ~" \
    . O2 A" N5 U& T# T
           Spring Task提供两种方式进行配置,注解和配置文件。使用注解虽然简单,不用配置xml,但是相对于修改比较频繁的任务来说,打包编译的过程也是挺麻烦的,建议使用配置文件实现。
    $ C% A, @! w8 G4 o0 P) x" ^9 ]/ j2 l: p8 b
    * s# C% ~9 Z" R7 ~! a
    二、配置
    : p" [1 t4 L$ \4 [$ p( E1)xml配置
    4 o4 W6 a1 q5 L5 P! b
    1. <?xml version="1.0" encoding="UTF-8"?>7 ?, D/ e$ K4 _6 u: y: l" Z
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      / t. a6 A1 E5 b& Q/ v# @
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  * ]; O4 `4 b+ N& G1 D
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
      6 U5 k  q3 d- z% b6 u9 l
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="1 o7 U8 `. \8 _
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd- k& z# z: n  ]' n
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
      $ W! V6 `; B; B) M: _% t
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd0 {! @$ g/ d/ P7 V2 R6 G" O
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd; z3 ?6 U" z8 e$ s) V# L
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd% ~) ^) J) G/ v7 l3 e, Z
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd5 o; q5 `# {; S( j
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      " Q3 f, g  d% H- C+ C

    13. ) j5 R, D1 X9 y& [6 d& O$ M$ f. b7 ^
    14.         <description>Spring Configuration</description>
      . u& t7 N* R" F1 u1 j7 D
    15.         5 P: a% n; i; v, p" y
    16.         <context:component-scan base-package="task"/> 2 h: [8 K" w: T; C
    17.         " H! H7 b0 o% i' ~: t
    18.         <!-- 配置任务线性池 -->
      5 Q: X& {$ Z% V! T: ~
    19.     <task:executor  id="executor" pool-size="10" /> 4 d$ l4 j7 W4 Z& [) @
    20.     <task:scheduler id="scheduler" pool-size="10"/>7 x3 B. M. |' _- W5 g+ G5 ~* C6 B
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      2 L& L$ q/ T4 m) ?" n
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->/ g+ y: ]. I. u( E/ _1 Y6 z5 o( G6 E) v
    23.    <!--  <task:scheduled-tasks scheduler="scheduler">  * P" B7 |1 X' u0 s! p/ z0 V+ s
    24.         <task:scheduled ref="TestJob" method="test" cron="0/1 * * * * ?"/>  
      + m* W) d: L  _+ v
    25.     </task:scheduled-tasks>  --> 9 U* ]1 |$ T* |- r0 {7 i- H3 B
    26. </beans>
    复制代码

    0 I3 x. G5 F- y$ i4 r3 i' d2)代码实现1 M  X9 Q* B( Y* q* S
    1. package task;
      : h- A+ F# J* B. v" s) Y
    2. ) X4 R, J) V$ x* i; Q
    3. import org.springframework.scheduling.annotation.Scheduled;- U& E+ l- i. J* c
    4. import org.springframework.stereotype.Component;  y" Y. \- f4 _5 B1 o
    5. / n: E4 u3 W8 G0 C7 [( l
    6. @Component("TestJob")  1 G9 C. j  D2 T" Z0 N# P1 j
    7. public class TestJob {
      ! ?- m, z) l& R* y: I( J" o
    8.         @Scheduled(cron = "0/5 * * * * ?")//每隔5秒隔行一次 4 T8 q$ r% h& `2 E. j. G
    9.     public void test1()
      1 y6 h" \4 \8 r* ^+ `
    10.     {
      % G# {+ i: g' O9 x. L3 u
    11.         System.out.println("job1 开始执行");
      7 U$ `# w* z' l. U7 n" c7 P
    12.     }
      & \3 @4 g/ e& b4 t5 t
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔5秒隔行一次
      : v! J, y1 s* T6 \# ~
    14.     public void test2()! G5 h* n6 Y1 ?( V# w6 d
    15.     {0 A0 t0 W: Y: p6 t
    16.         System.out.println("job2 开始执行");
      + o3 g8 M6 h* n, F
    17.     }
      / {+ }+ U- _7 F% ^* f( L/ }9 R* I+ x- a
    18. }
    复制代码

    : A) w2 e( W! v9 k5 a项目启动后运行结果:5 v' p, y3 z/ T" @0 u3 M% k* P

    , \, q0 Y2 Z& S2 g6 R
    / }0 g4 Z: j  \& B

    - q+ ?% ^: L; N& F/ w7 O) T; K' X: N8 R8 F& M, {) G7 A

    / p: V: H" s9 x( }: w0 k

    CSDN下载:http://download.csdn.net/detail/zhulin2012/9576741

    百度云下载:http://pan.baidu.com/s/1boW6WP5


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


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

    0

    主题

    0

    听众

    104

    金钱

    三袋弟子

    该用户从未签到

    沙发
    发表于 2017-12-20 18:33:33 |只看该作者
    额1111111111
    回复

    使用道具 举报

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

       

    关闭

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

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