定时任务组件Quartz的使用

Quartz是Job scheduling(作业调度)领域的一个开源项目,Quartz既可以单独使用也可以跟spring框架整合使用,在实际开发中一般会使用后者。使用Quartz可以开发一个或者多个定时任务,每个定时任务可以单独指定执行的时间,例如每隔1小时执行一次、每个月第一天上午10点执行一次、每个月最后一天下午5点执行一次等。

官网:http://www.quartz-scheduler.org/

maven坐标:


  org.quartz-scheduler
  quartz
  2.2.1


  org.quartz-scheduler
  quartz-jobs
  2.2.1


    org.springframework
    spring-context-support
    5.0.5.RELEASE

定义一个定时任务类(这里做的是七牛云图片的定时删除)

package com.gzy.health.jobs;


import com.gzy.health.common.RedisConst;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import redis.clients.jedis.JedisPool;

import java.util.Iterator;
import java.util.Set;


/**
 * @author :gzy
 * @date :Created in 2019/6/10
 * @description :任务调度类
 * @version: 1.0
 */
@Service
public class ClearImageJob {

    @Autowired
    private JedisPool jedisPool;
    /**
     * 定义清理图片的任务
     */
    public void clearImageJob(){
            try{
                // 获取两个数据差集
            Set set = jedisPool.getResource().sdiff(RedisConst.SETMEAL_PIC_RESOURCES,RedisConst.SETMEAL_PIC_DB_RESOURCES);
            if (set == null){
                System.out.println("clearImageJob......set is null");
                return;
            }
            Iterator iterator = set.iterator();
            while (iterator.hasNext()){
                String picName = iterator.next();
            QiniuUtils.deleteFileFromQiniu(picName);
                jedisPool.getResource().srem(RedisConst.SETMEAL_PIC_RESOURCES,picName);
                System.out.println("clearImageJob......del:"+picName);
            }
        }catch(Exception e){
            e.printStackTrace();
        }

    }
}

配置文件spring-jobs.xml,配置自定义Job、任务描述、触发器、调度工厂等

  • 自动扫包
  • 注册任务对象
  • 注册JobDetail
  • 触发器
  • 调度工厂



    
    
    
    
    
    
        
        
        
        
    
    
    
        
        
            
            
            
            0/10 * * * * ?
        
    
    
    
        
            
                
            
        
    


修改web.xml,容器启动时,加载spring配置文件




  Archetype Created Web Application
  
    contextConfigLocation
    classpath:spring-*.xml
  
  
    org.springframework.web.context.ContextLoaderListener
  



cron表达式介绍

这种表达式称为cron表达式,通过cron表达式可以灵活的定义出符合要求的程序执行的时间。


6.png

cron表达式分为七个域,之间使用空格分隔。其中最后一个域(年)可以为空。每个域都有自己允许的值和一些特殊字符构成。使用这些特殊字符可以使我们定义的表达式更加灵活。

下面是对这些特殊字符的介绍:

逗号(,):指定一个值列表,例如使用在月域上1,4,5,7表示1月、4月、5月和7月

横杠(-):指定一个范围,例如在时域上3-6表示3点到6点(即3点、4点、5点、6点)

星号(*):表示这个域上包含所有合法的值。例如,在月份域上使用星号意味着每个月都会触发

斜线(/):表示递增,例如使用在秒域上0/15表示每15秒

问号(?):只能用在日和周域上,但是不能在这两个域上同时使用。表示不指定

井号(#):只能使用在周域上,用于指定月份中的第几周的哪一天,例如6#3,意思是某月的第三个周五 (6=星期五,3意味着月份中的第三周)

L:某域上允许的最后一个值。只能使用在日和周域上。当用在日域上,表示的是在月域上指定的月份的最后一天。用于周域上时,表示周的最后一天,就是星期六

W:W 字符代表着工作日 (星期一到星期五),只能用在日域上,它用来指定离指定日的最近的一个工作日

cron表达式在线生成器
可以借助一些cron表达式在线生成器来根据我们的需求生成表达式即可。

http://www.bejson.com/othertools/cron/

附:七牛云删除工具类

package com.gzy.health.jobs;

/**
 * @author :gzy
 * @date :Created in 2019/6/10
 * @description :
 * @version: 1.0
 */

import com.qiniu.common.QiniuException;
import com.qiniu.common.Zone;
import com.qiniu.http.Response;
import com.qiniu.storage.BucketManager;
import com.qiniu.storage.Configuration;
import com.qiniu.storage.UploadManager;
import com.qiniu.util.Auth;

import java.io.FileInputStream;
import java.util.UUID;

/**
 * 七牛云工具类
 */
public class QiniuUtils {
    public  static String accessKey = "wz3pfgxFmBhU-Ao7-kAXCPNmojAl9BkN2c5HgUun";
    public  static String secretKey = "74ARWyFtV6fzDPWAS4TDI0UPASNYFvCD5rXMPTMa";
    public  static String bucket = "gzy_health";

    /**
     * 删除文件
     * @param fileName 服务端文件名
     */
    public static void deleteFileFromQiniu(String fileName){
        //构造一个带指定Zone对象的配置类
        Configuration cfg = new Configuration(Zone.zone0());
        String key = fileName;
        Auth auth = Auth.create(accessKey, secretKey);
        BucketManager bucketManager = new BucketManager(auth, cfg);
        try {
            bucketManager.delete(bucket, key);
        } catch (QiniuException ex) {
            //如果遇到异常,说明删除失败
            System.err.println(ex.code());
            System.err.println(ex.response.toString());
        }
    }

}

你可能感兴趣的:(定时任务组件Quartz的使用)