SpringBoot设置定时任务

package com.sporch.controller;

import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
@EnableScheduling  //开启对定时任务的支持
public class ActivitiController {
    @Scheduled(cron="0/20 * * * * ?")    //cron表达式 20秒执行一次
    public void scheduler() {
        System.out.println("定时任务执行了");
    }
}

  

 

上一篇:springboot的定时任务


下一篇:【Delphi7官方镜像版】delphi_7_ent_en官方镜像 阿里云盘