我的日常

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

动态微博

查看: 3158|回复: 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,不然注解会失效(这个坑找了好久)。: a' t: k# K2 y. S$ G" N! N
    一、说明        7 N7 W/ I3 ^9 q$ n1 L$ r3 k! k

    ' i  j" A8 V9 E' @: |7 m         以前项目一直使用Quartz的定时任务,虽然其功能强大,但是配置文件极其复杂,并且一个class下只能执行一个方法(貌似是)。定时任务多了以后对于维护xml配置文件时一件极为头疼的事情。
    6 C- C* m- f1 V# r$ P
    2 f7 `& I0 X4 q# i& Y, }
    5 ?( x: l: [' I* U# [
            前段时间把Quartz整合实例化入数据库了,做了一个任务列表,进行增删查改,的确是简单多了。在项目不重启的情况下可以对任务进行各种你想要的操作。如图所示操作:2 S4 B: i* Z/ F% p: N8 J: B+ y7 }. K

    # F+ F% h4 B1 T

    ) k$ U2 Q5 L% S' C4 C" `, ^: m
    ; ?) T- T7 D$ x# `
    ' M* C) Q! v  W
            但如果只是简单的跑个任务其实spring升级到3后已经自带任务调度器了,相比之下Spring task无论是理解还是使用都简单很多。但是Quartz有线程和线程管理以及集群等高级特性,所以大家可以自行选择了。不过一般情况下,觉得SpringTask足够了。4 o: V* n6 B: @7 t7 o  n; X+ W
    " s' {. ]% O' v% E

    : t, k- L, m/ F7 j7 ~       Spring Task提供两种方式进行配置,注解和配置文件。使用注解虽然简单,不用配置xml,但是相对于修改比较频繁的任务来说,打包编译的过程也是挺麻烦的,建议使用配置文件实现。7 h# x; f! m% ~0 [( @( Z% R0 I% B
    " K6 n8 N% l+ L

    3 D0 u7 q  ]9 G: k) |' H二、配置
    # P! p; Z* P' J/ H+ ?. ?1)xml配置
    - @8 Y0 @# x; g1 t$ C0 W0 Q8 Z
    1. <?xml version="1.0" encoding="UTF-8"?>
      2 V+ g# I4 V* _8 |1 p
    2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      9 U# m; z, `/ ~* X: n: V
    3.         xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  4 G8 r: b1 }8 a
    4.         xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"/ O3 E; e" H7 ^! W
    5.     xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
        E. g! b$ D3 l( a( _) j
    6.                 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
      % Q; Z/ E6 ^5 M, c. u8 E
    7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd& ~* `; w/ A! C
    8.                 http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
      - o9 T0 @% A) g7 O, S
    9.                 http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd) `$ W+ D& m4 Q+ |% V" ~( g  X$ Y
    10.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        `  ?, g, y$ y+ k8 J' Q' ]
    11.                 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd5 P- g$ S- F' P6 X# d$ B
    12.                 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
      ( G/ u6 R3 [; Q$ P$ a- u; U
    13. 4 m1 K. p2 i2 ~$ M
    14.         <description>Spring Configuration</description>
      7 K& X& v1 B, v, K9 l
    15.         ; G) C8 f- b; |* t7 f+ W
    16.         <context:component-scan base-package="task"/>
      ; U% ]$ l* |9 ~2 ^+ j
    17.         
      $ B' f* A, K9 `+ @' @5 Q' W
    18.         <!-- 配置任务线性池 -->  m9 G. W+ g3 o4 Y
    19.     <task:executor  id="executor" pool-size="10" />
      & |& V" z+ P7 e+ [' w+ c: g8 a
    20.     <task:scheduler id="scheduler" pool-size="10"/>" ]5 F/ |* ~4 C# d/ ^
    21.     <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
      ; j1 i1 f4 O! b  ~1 r
    22.     <!-- 配置文件实现 如果使用配置文件实现 把注释解开即可然后 删除掉代码的注解-->
        t: p! z- c  J. A8 M/ U
    23.    <!--  <task:scheduled-tasks scheduler="scheduler">  
      4 ?# ^& |6 H  ?0 i) l
    24.         <task:scheduled ref="TestJob" method="test" cron="0/1 * * * * ?"/>  # Q3 M5 k* M' ]6 z  p
    25.     </task:scheduled-tasks>  -->
      . `: n1 Y6 s2 s" I, `. f
    26. </beans>
    复制代码

    8 Y5 N8 Z  z! S# E& P. E2)代码实现
    % N/ |; C" c  D. Z
    1. package task;
      3 J# Q; f/ P, k) {  S

    2. & Y6 k7 A6 Y9 q/ Y6 {7 O
    3. import org.springframework.scheduling.annotation.Scheduled;8 v* |6 o4 G' j7 ]" a
    4. import org.springframework.stereotype.Component;% e; k. [: h# F! B+ |1 |
    5. $ s1 t, `3 x( A" G
    6. @Component("TestJob")  / l8 S% W5 F) ?. T$ e
    7. public class TestJob {
      / A3 N7 C3 }# Y% {$ K2 G
    8.         @Scheduled(cron = "0/5 * * * * ?")//每隔5秒隔行一次 4 V7 R$ C# g* {4 P& v# V
    9.     public void test1()1 s1 T7 P- w# M/ q( W
    10.     {
      , L! D$ w7 z% q& y
    11.         System.out.println("job1 开始执行");& m( T; \" K. ]
    12.     }
      8 Z/ ?1 d; V! r- z1 S/ R7 O
    13.         @Scheduled(cron = "0/5 * * * * ?")//每隔5秒隔行一次 , P& k) U5 x/ Z6 b# C& H6 y" S( M
    14.     public void test2()  _6 Y, W/ Q4 @, J4 K
    15.     {' _, T  [! y7 \% R) o
    16.         System.out.println("job2 开始执行");
      7 n$ I4 d0 K* E+ l- Q
    17.     } - O% Q  B# r, i. W: x
    18. }
    复制代码

    0 R2 ^' ^; k) F项目启动后运行结果:
    - i0 w& x; k; w; j) N5 x3 W
    3 o% q0 R# O- C, c

    / `& `! l2 W& x5 Z: i4 W
    + u! t( ^$ S1 c- B/ o/ i
    : X1 N% A4 l1 p& l4 |% L% f
    9 {; z: V7 R% w' [2 x" V9 @7 F, a  F

    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群 科帮网手机客户端
    快速回复 返回顶部 返回列表