springboot 的定时任务使用
Posted 小虎Tiger
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 的定时任务使用相关的知识,希望对你有一定的参考价值。
定时任务在Spring Boot中的集成
在启动类中加入开启定时任务的注解:
在SpringBoot中使用定时任务相当的简单。首先,我们在启动类中加入@EnableScheduling来开启定时任务。-------------------这是必要的
然后:
@Component
public class QuartzService {
// 每分钟启动
@Scheduled(cron = "0 0/1 * * * ?")
public void timerToNow(){
System.out.println("now time:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
}
}
一定要加入容器中。。。。
以上是关于springboot 的定时任务使用的主要内容,如果未能解决你的问题,请参考以下文章
jeesite 定时任务 或者springboot 执行定时任务
SpringBoot使用SchedulingConfigurer实现多个定时任务多机器部署问题