博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring scheduled
阅读量:5068 次
发布时间:2019-06-12

本文共 1878 字,大约阅读时间需要 6 分钟。

<?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:task="http://www.springframework.org/schema/task"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.1.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">
  <!--task任务扫描注解-->
    <task:annotation-driven/>

  <!--扫描包位置-->

    <context:component-scan base-package="cn.anosi.task"/>  
</beans>

package cn.anosi.task;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import cn.anosi.service.wa.WaRefundService;
@Component
public class WaTask {
    @Autowired
    private WaRefundService waRefundService;
    
    protected Logger logger = LoggerFactory.getLogger(getClass().getName());
    @Scheduled(cron="0 0 0 * * ?")   //每天零点执行一次  
    public void deletePartspack()throws Exception{  
        int back=waRefundService.delete();
        logger.debug("定时删除wa_partspack表"+back+"条无效数据!");
    }
}

定时器任中方法务没有返回值

"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触发

转载于:https://www.cnblogs.com/god-monk/p/6519359.html

你可能感兴趣的文章
session
查看>>
模板类单例模式
查看>>
51nod1327 棋盘游戏
查看>>
P3507 GRA-The Minima Game
查看>>
偏前端 - vue-cli之(node.js)的安装及环境变量的配置、环境搭建
查看>>
php使用cURL上传图片
查看>>
用python写一个北京市的个税计算器
查看>>
MySQL在CenterOS和Ubuntu的安装
查看>>
死磕!Windows下Apache+PHP+phpmyadmin的配置
查看>>
Android学习资源
查看>>
ASP 解析json
查看>>
angularJS----filter
查看>>
Python Api接口自动化测试框架 excel篇
查看>>
Ionic 常见问题及解决方案
查看>>
各浏览器目前对CSS3、HTML5的支持
查看>>
切换jdk版本
查看>>
结对开发四~~
查看>>
关于多用户下自动编号的问题
查看>>
只显示重复数据,或不显示重复数据
查看>>
curl 命令详解
查看>>