maven 计时器 T+1方式 执行任务

在pom.xml文件中添加,可以在maven仓库找最新的版本

<!-- quartz定时器 -->
<dependency>
    <groupId>org.quartz-scheduler</groupId>
    <artifactId>quartz</artifactId>
    <version>2.2.3</version>
</dependency>

resource文件夹中新建一个文件 spring-task.xml  

<?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:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- job:负责执行任务的-->
    <bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        <!-- testTask需要定时执行的目标类名,下面有代码-->
        <property name="targetObject" ref="testTask"/>
        <!-- move需要定时执行的目标方法,真正执行的是testTask类里的move方法-->
        <property name="targetMethod" value="move"/>
        <property name="concurrent" value="false"/>
    </bean>

    <!-- trigger:触发器,用于触发id为jobDetail的job-->
    <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
        <property name="jobDetail" ref="jobDetail"/>
        <!-- 每15秒执行一次,时间可以根据需要调整-->
        <property name="cronExpression" value="0/15 * * * * ?"/>
    </bean>

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

</beans>

在配置文件 applicationContext.xml文件中导入spring-task.xml  

<import resource="spring-task.xml"></import>

testTask类,move里面的实现代码改改就能用了

package com.dayuanit.task;

import com.dayuanit.entity.Transfer;
import com.dayuanit.service.TransferService;
import com.dayuanit.service.UserService;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.Collections;
import java.util.List;

@Component("testTask")
public class TestTask {

    @Autowired
    private UserService userService;
    @Autowired
    private TransferService transferService;

   org.slf4j.Logger logger = LoggerFactory.getLogger(TransferInTask.class);
   
    //定时执行的方法
    public void move() {
        System.out.println("this is move()");

        int currentPage = 1;

        List<Transfer> list = Collections.EMPTY_LIST;

        do {
            list = transferService.listToBeRollbackRecord(currentPage);
            System.out.println("待回滚状态处理" );

            for (Transfer transfer : list) {
                try {
                    transferService.processRollbackIn(transfer);
                } catch (Exception e) {
                    logger.error("处理转账异常", e);
                }

            }
            currentPage++;
        } while (!list.isEmpty());
    }
}

时间参考:
“0/10 * * * * ?” 每10秒触发 
“0 0 12 * * ?” 每天中午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期间的每1分钟触发 
“0 0/5 14 * * ?” 在每天下午2点到下午2:55期间的每5分钟触发 
“0 0/5 14,18 * * ?” 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发 
“0 0-5 14 * * ?” 在每天下午2点到下午2:05期间的每1分钟触发 
“0 10,44 14 ? 3 WED” 每年三月的星期三的下午2:10和2:44触发 
“0 15 10 ? * MON-FRI” 周一至周五的上午10:15触发 
“0 15 10 15 * ?” 每月15日上午10:15触发 
“0 15 10 L * ?” 每月最后一日的上午10:15触发 
“0 15 10 ? * 6L” 每月的最后一个星期五上午10:15触发 
“0 15 10 ? * 6L 2002-2005” 2002年至2005年的每月的最后一个星期五上午10:15触发 
“0 15 10 ? * 6#3” 每月的第三个星期五上午10:15触发 
每隔5秒执行一次:/5 * * * ? 
每隔1分钟执行一次:0 /1 * * ? 
每天23点执行一次:0 0 23 * * ? 
每天凌晨1点执行一次:0 0 1 * * ? 
每月1号凌晨1点执行一次:0 0 1 1 * ? 
每月最后一天23点执行一次:0 0 23 L * ? 
每周星期天凌晨1点实行一次:0 0 1 ? * L 
在26分、29分、33分执行一次:0 26,29,33 * * * ? 
每天的0点、13点、18点、21点都执行一次:0 0 0,13,18,21 * * ? 

猜你喜欢

转载自my.oschina.net/u/3446892/blog/1649005