定时任务一般是项目中都需要用到的,可以用于定时处理一些特殊的任务. 在SpirngBoot中使用定时任务变的特别简单,不需要再像SpringMVC一样写很多的配置,只需要在启动类上增加一个@EnableScheduling注解即可. 启动类开启定时任务 //开启定时任务 @EnableScheduling @RestController @SpringBootApplication //设置扫描的包名 @ComponentScan(basePackages = {"com.preach.cont…