spring定時任務

實現分類

  1. 1. Java自帶的java.util.Timer類,這個類容許你調度一個java.util.TimerTask任務。使用這種方式能夠讓你的程序按照某一個頻度執行,但不能在指定時間運行。通常用的較少,這篇文章將不作詳細介紹。java

  2. 2. 使用Quartz,這是一個功能比較強大的的調度器,能夠讓你的程序在指定時間執行,也能夠按照某一個頻度執行,配置起來稍顯複雜,稍後會詳細介紹。spring

  3. 3. Spring3.0之後自帶的task,能夠將它當作一個輕量級的Quartz,並且使用起來比Quartz簡單許多,稍後會介紹ide

用法說明

Quartz
this

  1. 繼承org.springframework.scheduling.quartz.QuartzJobBean    spa

import org.quartz.JobExecutionContext;  
import org.quartz.JobExecutionException;  
import org.springframework.scheduling.quartz.QuartzJobBean;  
public class Job1 extends QuartzJobBean {  
  
private int timeout;  
private static int i = 0;  
//調度工廠實例化後,通過timeout時間開始執行調度  
public void setTimeout(int timeout) {  
this.timeout = timeout;  
}  
  
/** 
* 要調度的具體任務 
*/  
@Override  
protected void executeInternal(JobExecutionContext context)  
throws JobExecutionException {  
  System.out.println("定時任務執行中…");  
}  
}

2. 配置JobDetailBean
code

說明:JobDetailBean有兩個屬性,jobClass屬性即咱們在java代碼中定義的任務類,jobDataAsMap屬性即該任務類中須要注入的屬性值component

<bean name="job1" class="org.springframework.scheduling.quartz.JobDetailBean">  
    <property name="jobClass" value="com.gy.Job1" />  
    <property name="jobDataAsMap">  
        <map>  
            <entry key="timeout" value="0" />  
        </map>  
    </property>  
</bean>

3. 配置調度觸發方式
orm

Quartz的做業觸發器有兩種,分別是xml

org.springframework.scheduling.quartz.SimpleTriggerBean繼承

org.springframework.scheduling.quartz.CronTriggerBean

第一種SimpleTriggerBean,只支持按照必定頻度調用任務,如每隔30分鐘運行一次。

<bean id="simpleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">  
    <property name="jobDetail" ref="job1" />  
    <property name="startDelay" value="0" /><!-- 調度工廠實例化後,通過0秒開始執行調度 -->  
    <property name="repeatInterval" value="2000" /><!-- 每2秒調度一次 -->  
</bean>

第二種CronTriggerBean,支持到指定時間運行一次,如天天12:00運行一次等

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  
    <property name="jobDetail" ref="job1" />  
    <!—天天12:00運行一次 -->  
    <property name="cronExpression" value="0 0 12 * * ?" />  
</bean>

4. 配置調度工廠,說明:該參數指定的就是以前配置的觸發器的名字

<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
    <property name="triggers">  
        <list>  
            <ref bean="cronTrigger" />  
        </list>  
    </property>  
</bean>

Quartz還有一種不用繼承QuartzJobBean 實現的方式


Spring-task實現

spring task,能夠將它比做一個輕量級的Quartz,並且使用起來很簡單,除spring相關的包外不須要額外的包,並且支持註解和配置文件兩種

1.編寫pojo

mport org.springframework.scheduling.annotation.Scheduled;    
import org.springframework.stereotype.Component;  
  
@Component(「taskJob」)  
public class TaskJob {  
    @Scheduled(cron = "0 0 3 * * ?")  
    public void job1() {  
        System.out.println(「任務進行中。。。」);  
    }  
}

2. 添加task相關的配置

<?xml version="1.0" encoding="UTF-8"?>  
<beans xmlns="http://www.springframework.org/schema/beans"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"  
    xmlns:context="http://www.springframework.org/schema/context"  
    xmlns:tx="http://www.springframework.org/schema/tx"  
    xmlns:task="http://www.springframework.org/schema/task"  
    xsi:schemaLocation="  
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
        http://www.springframework.org/schema/context   
http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd  
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd"  
    default-lazy-init="false">  
  
  
    <context:annotation-config />  
    <!—spring掃描註解的配置   -->  
    <context:component-scan base-package="com.gy.mytask" />  
      
    <!—開啓這個配置,spring才能識別@Scheduled註解   -->  
    <task:annotation-driven scheduler="qbScheduler" mode="proxy"/>  
    <task:scheduler id="qbScheduler" pool-size="10"/>
相關文章
相關標籤/搜索