Spring 定时任务
2017-02-15 本文已影响38人
迷糊_
@Component
@EnableScheduling
public class TestTask {
@Scheduled(cron = "0/30 * * * * ?")//每30秒执行一次
public void timer() throws Exception{
System.out.println("test");
}
}
@Component
@EnableScheduling
public class TestTask {
@Scheduled(cron = "0/30 * * * * ?")//每30秒执行一次
public void timer() throws Exception{
System.out.println("test");
}
}