1、在启动类上添加@EnableScheduling注解开启定时器
2、在定时器类的方法上添加@Scheduled(cron = "0 0 0 * * ?")注解定时执行该方法,
在定时器类上添加@Component注解可以通过@Autowired引入Service
@Component public class MyTask { @Autowired private MyService myService; /** * 每天晚上12点执行更新 */ @Scheduled(cron = "0 0 0 * * ?") public void updateInfo(){ myService.updateInfo(); } }