springboot基于注解实现定时任务
@Component//扫描组件 @Configuration//标记配置类 @EnableScheduling//开启定时任务 public class Task { //添加定时任务-- 5分钟执行一次 @Scheduled(fixedRate=5 * 60 * 1000) private void updateTask(){ system.out.print("定时任务-------------------"); } }
2024-01-05 09:56:16
springboot基于注解实现定时任务
@Component//扫描组件 @Configuration//标记配置类 @EnableScheduling//开启定时任务 public class Task { //添加定时任务-- 5分钟执行一次 @Scheduled(fixedRate=5 * 60 * 1000) private void updateTask(){ system.out.print("定时任务-------------------"); } }