美文网首页
Spring 定时任务

Spring 定时任务

作者: 迷糊_ | 来源:发表于2017-02-15 16:44 被阅读38次
    @Component
    @EnableScheduling
    public class TestTask {
    
        @Scheduled(cron = "0/30 * * * * ?")//每30秒执行一次
        public void timer() throws Exception{
            System.out.println("test");
        }
    }
    

    相关文章

      网友评论

          本文标题:Spring 定时任务

          本文链接:https://www.haomeiwen.com/subject/ugvqwttx.html