springboot中通过注解添加定时任务 在springboot的启动类中添加@EnableScheduling注解 在需要执行的方法上添加@Scheduled(cron = “0/5 * * * * ?”)注解 0/5 * * * * ?标识每五秒调用一次方法 在类上添加@Component注解,作为配置类