基于@scheduled注解,实现定时任务

springboot基于注解实现定时任务

 

@Component//扫描组件
@Configuration//标记配置类
@EnableScheduling//开启定时任务
public class Task {

    //添加定时任务-- 5分钟执行一次
    @Scheduled(fixedRate=5 * 60 * 1000)
    private void updateTask(){
       system.out.print("定时任务-------------------");

    }
}

 

上一篇:SpringBoot专题学习Part29:SpringBoot的Async异步任务、Scheduled定时任务、mail邮件发送任务


下一篇:Spring Boot中整合Quartz实现定时任务