cron表达式
在线生成https://cron.qqe2.com/
6个时间刻度的话 * * * * * * 分别对应 秒 分 时 日 月 星期 ;
7个时间刻度的话 * * * * * * * 分别对应 秒 分 时 日 月 星期 年;
每隔5秒执行一次:*/5 * * * * ?
每隔1分钟执行一次:0 */1 * * * ?
每天22点执行一次:0 0 22 * * ?
每天凌晨1点执行一次:0 0 1 * * ?
每月1号凌晨1点执行一次:0 0 1 1 * ?
每月最后一天21点执行一次:0 0 21 L * ?
每周星期天凌晨1点实行一次:0 0 1 ? * L
在12分、13分、14分执行一次:0 12,13,14 * * * ?
每天的0点、3点、5点、7点都执行一次:0 0 0, 3,5,7 * * ?
定时任务
import com. google. common. base. Objects ;
import com. netcom. nkestate. common. Constant ;
import org. springframework. scheduling. annotation. EnableScheduling ;
import org. springframework. scheduling. annotation. Scheduled ;
import org. springframework. stereotype. Service ;
@Service
@EnableScheduling
public class LicenseTasks {
@Scheduled ( cron = "*/2 * * * * ?" )
public static void run ( ) {
System . out. println ( 11111 ) ;
}
}
动态任务
package com. netcom. nkestate. services. action ;
import com. netcom. nkestate. common. Constant ;
import org. springframework. context. annotation. Configuration ;
import org. springframework. scheduling. Trigger ;
import org. springframework. scheduling. TriggerContext ;
import org. springframework. scheduling. annotation. EnableScheduling ;
import org. springframework. scheduling. annotation. SchedulingConfigurer ;
import org. springframework. scheduling. config. ScheduledTaskRegistrar ;
import org. springframework. scheduling. support. CronTrigger ;
import java. util. Date ;
@Configuration
@EnableScheduling
public class CompleteSchedule implements SchedulingConfigurer {
@Override
public void configureTasks ( ScheduledTaskRegistrar taskRegistrar) {
taskRegistrar. addTriggerTask (
new MyRunnable ( ) ,
new MyTrigger ( )
) ;
}
class MyTrigger implements Trigger {
@Override
public Date nextExecutionTime ( TriggerContext triggerContext) {
String licenseScheduledTaskDate = Constant . licenseScheduledTaskCRON;
return new CronTrigger ( licenseScheduledTaskDate) . nextExecutionTime ( triggerContext) ;
}
}
class MyRunnable implements Runnable {
public void run ( ) {
System . out. println ( "执行动态定时任务: " ) ;
}
}
}