欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring 中 @EnableScheduling 实现 定时任务

程序员文章站 2022-07-14 11:58:16
...

工作中竟让会用到定时任务,比如每日零点执行任务,清空前一天的无效数据。

SpringBoot中的@EnableScheduling 用于开启定时任务

                        @Scheduled:控制执行时间

@Configuration      //主要用于标记配置类,兼备Component的效果。
@EnableScheduling   //开启定时任务
public class WaybillNumTask {

    private static   int OrderNum = 0;

    /**
    每天零点执行一次
     **/
    @Scheduled(cron = "0 0 0 */1 * ?")
        public void cleanCount(){
            OrderNum = 0;
            System.err.println("执行运单顺序号归零时间: " + LocalDateTime.now() +"OrderNum:"+ OrderNum);
        }
@Scheduled注解:

使一个方法定时被执行的注解。其属性cron/fixedDelay/fixedRate必须有一个被指定

该注解标记的方法没有参数,也没有返回值。即使写了返回值,也会被忽略。