Spring Boot定时任务的使用方法
本文介绍在SpringBoot中如何使用定时任务,使用非常简单,就不做过多说明了。
下面是代码类:
packageorg.springboot.sample.config;
importorg.slf4j.Logger;
importorg.slf4j.LoggerFactory;
importorg.springframework.context.annotation.Configuration;
importorg.springframework.scheduling.annotation.EnableScheduling;
importorg.springframework.scheduling.annotation.Scheduled;
/**
*定时任务配置类
*
*@author单红宇(365384722)
*@mybloghttp://blog.csdn.net/catoop/
*@create2016年3月21日
*/
@Configuration
@EnableScheduling//启用定时任务
publicclassSchedulingConfig{
privatefinalLoggerlogger=LoggerFactory.getLogger(getClass());
@Scheduled(cron="0/20****?")//每20秒执行一次
publicvoidscheduler(){
logger.info(">>>>>>>>>>>>>scheduled...");
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。