在主启动类上添加 @EnableScheduling 注解开启定时任务支持。
@EnableScheduling
在要开启定时执行的方法上添加,括号内为 cron 表达式:
@Scheduled(cron = "0 0 8,12,18,22 * * ?")。
@Scheduled(cron = "0 0 8,12,18,22 * * ?")
邮件任务