开启定时任务
在程序入口类中添加@EnableScheduling注解
package com.alibaba;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@EnableAsync
@RestController
@SpringBootApplication
@EnableCaching
@EnableScheduling
@MapperScan("com.alibaba.dao")
public class TmallApplication {
public static void main(String[] args) {
SpringApplication.run(TmallApplication.class, args);
}
@RequestMapping(value = "hello",method = RequestMethod.GET)
public String getHello(){
return "hello world";
}
}
创建定时任务
单独创建一个类,用来存放定时任务,然后在每个定时任务方法上,用注解标明定时任务的执行周期。我这里以每间隔10秒打印一下当前系统时间为例。
package com.alibaba.task;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class ScheduledTask {
private final Logger logger = LoggerFactory.getLogger(getClass());
/**
* 每间隔10秒输出时间
*/
@Scheduled(fixedRate = 10000)
public void logTime(){
logger.info("定时任务,现在时间:"+System.currentTimeMillis());
}
}
@Scheduled的几种用法
- @Scheduled(fixedRate = 5000) :上一次开始执行时间点之后5秒再执行
- @Scheduled(fixedDelay = 5000) :上一次执行完毕时间点之后5秒再执行
- @Scheduled(initialDelay=1000, fixedRate=5000) :第一次延迟1秒后执行,之后按fixedRate的规则每5秒执行一次
- @Scheduled(cron="*/5 * * * * *") :通过cron表达式定义规则
- 注意,这里的时间,单位是毫秒,1秒=1000毫秒