从零开始学习springBoot(定时任务)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从零开始学习springBoot(定时任务)相关的知识,希望对你有一定的参考价值。
package com.kfit.base.scheduling;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
/**
* 定时任务
* @author Administrator
*
*/
@Configuration
@EnableScheduling
public class SchedulingConfig {
@Scheduled(cron = "0/20 * * * * ?") // 每20秒执行一次
public void scheduler() {
System.out.println(">>>>>>>>> SchedulingConfig.scheduler()");
}
}
以上是关于从零开始学习springBoot(定时任务)的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot定时任务 - 开箱即用分布式任务框架xxl-job