SpringBoot启用定时任务,其内部集成了成熟的框架,因此我们可以很简单的使用它。
开启定时任务
@SpringBootApplication
//设置扫描的组件的包
@ComponentScan(basePackages = {"com.tao"})
//开启定时器任务
@EnableScheduling
public class MybatisPlusApplication {
public static void main(String[] args) {
SpringApplication.run(MybatisPlusApplication.class, args);
}
}
配置定时任务组件
使用注解@Component
可以定义一个组件,组件中,我们可以按照以下代码开始定时任务。
Cron 表达式可以使用:http://cron.qqe2.com/ 来生成,非常的方便
@Component
public class TaskScheduled {
private static final SimpleDateFormat sm = new SimpleDateFormat("HH:mm:ss");
/**
* 开始时间表达式,从第三秒开始每隔10s执行一次
*/
@Scheduled(cron = "3/10 * * * * ? ")
public void inputTime(){
System.out.println("当前系统时间:"+sm.format(System.currentTimeMillis()));
}
/**
* 时间间隔,每隔5秒执行一次
*/
@Scheduled(fixedRate = 5000)
public void inputTime2(){
System.out.println("当前系统时间:"+sm.format(System.currentTimeMillis()));
}
}