springboot定时器
@EnableScheduling //放在cheduler方法所在的类上
@Scheduled(cron = "0/20 * * * * ?") // 每20秒执行一次
public void scheduler() {//执行的方法、内容在这里添加
logger.info(">>>>>>>>>>>>> scheduled ... ");
}
posted on 2018-03-14 17:16 superficial。 阅读(225) 评论(0) 编辑 收藏 举报