Bootstrap

Spring 调度任务@scheduled学习总结

转自:点击打开链接

 

官网Api:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/scheduling.html#scheduling-annotation-support-scheduled

1.initialDelay :初次执行任务之前需要等待的时间

@Scheduled(initialDelay =5000)
public void doSomething() {

}
public void doSomething() {

}

 

2.fixedDelay:每次执行任务之后间隔多久再次执行该任务。

@Scheduled(fixedDelay=5000)
public void doSomething() {
    // something that should execute periodically
}
public void doSomething() {
    // something that should execute periodically
}

 

3.fixedRate:执行频率,每隔多少时间就启动任务,不管该任务是否启动完成

@Scheduled(fixedRate=5000)
public void doSomething() {

}
public void doSomething() {

}

4.cron=“”设置时分秒等具体的定时,网上很很多相关列子。

例如:转:http://blog.csdn.net/kkdelta/article/details/7238581

 

@Scheduled(cron="*/5 * * * * MON-FRI")
public void doSomething() {
    // something that should execute on weekdays only
}
public void doSomething() {
    // something that should execute on weekdays only
}

 

 

 

下面是个定时的学习的一个案例,感觉蛮好,给大家分享下 :

Spring使用之:Quartz定时任务为什么会被阻塞:http://fhqllt.iteye.com/blog/434943

 

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;