8、springboot之定时任务

@Configuration
@EnableScheduling
public class SchedulingConfig {
@Scheduled(cron = "0/5 * * * * ?") // 每5秒执行一次
    public void scheduler() {
            System.out.println("test");
     }
 }

比spring中的quartz定时器简单多了吧

posted @ 2017-04-19 16:19  孤独时光  阅读(222)  评论(0)    收藏  举报