@EnableScheduling//定时任务
package com.atguigu.edustatistics.scheduled; import com.atguigu.commonutils.DateUtil; import com.atguigu.edustatistics.service.StatisticsDailyService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; import java.util.Date; @Component public class ScheduledTask { /** * 测试 * 每天七点到二十三点每五秒执行一次 * 这里只能写 6 位 springBoot默认的是当前的 年份, 写7位会报错 */ @Scheduled(cron = "0/5 * * * * ?") public void task1() { System.out.println("*********++++++++++++*****执行了"+new Date()); } }
原文:https://www.cnblogs.com/mangoubiubiu/p/14193535.html