方法中不能有参数
类上加注解:@Component
方法上加注解@Scheduled
每天10:14执行: @Scheduled(cron = "0 14 10 ? * *")
每5秒执行一次:@Scheduled(fixedRate = 5000)