Java实现定时调度

1Timer

Timer myTimer = new Timer();  

           // 1秒后执行

           myTimer.schedule(new Worker(), 1000); 

           // 2012-02-28 09:58:00执行  

           myTimer.schedule(new Worker(), new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2012-02-28 09:58:00"));  

           // 5秒后执行 每一秒执行一次

           myTimer.schedule(new Worker(), 5000,1000);  

           // 2012-02-28 09:58:00执行一次 以后每秒执行一次,如果设定的时间点在当前时间之前,任务会被马上执行,然后开始按照设定的周期定时执行任务  

          myTimer.schedule(new Worker(), new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2012-02-28 09:58:00"),1000); 

          //5秒后执行 每一秒执行一次 如果该任务因为某些原因(例如垃圾收集)而延迟执行,那么接下来的任务会尽可能的快速执行,以赶上特定的时间点

        myTimer.scheduleAtFixedRate(new Worker(), 5000,1000);  

        //和上个类似

        myTimer.scheduleAtFixedRate(new Worker(), new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2012-02-28 09:58:00"),1000);  

 

timer的缺点:

(1)Timer对调度的支持是基于绝对时间,而不是相对时间的,由此任务对系统时钟的改变是敏感的;

(2)所有的TimerTask只有一个线程TimerThread来执行,因此同一时刻只有一个TimerTask在执行;

(3)Timer线程并不捕获异常,所以任何一个TimerTask的执行异常都会导致Timer终止所有任务;这种情况下,Timer也不会再重新恢复线程的执行了;它错误的认为整个Timer都被取消了。此时,已经被安排但尚未执行的TimerTask永远不会再执行了,新的任务也不能被调度了。

因此你应该考虑使用ScheduledThreadPoolExecutor作为代替品,ScheduledThreadExecutor只支持相对时间。

 

2ScheduleExecutorService

ScheduleExecutorService接口中有四个重要的方法,其中scheduleAtFixedRate和scheduleWithFixedDelay在实现定时程序时比较方便。

1scheduleAtFixedRate

         public ScheduledFuture scheduleAtFixedRate(Runnable command, long initialDelay, long period,  TimeUnit unit);  

         command:执行线程

         initialDelay:初始化延时

         period:两次开始执行最小间隔时间

         unit:计时单位

2scheduleWithFixedDelay

         public ScheduledFuture scheduleWithFixedDelay(Runnable command,long initialDelay, long delay, TimeUnit unit);  

         command:执行线程

         initialDelay:初始化延时

         period:前一次执行结束到下一次执行开始的间隔时间(间隔执行延迟时间)

         unit:计时单位

3)功能示例

         1.按指定频率周期执行某个任务。

            初始化延迟0ms开始执行,每隔100ms重新执行一次任务。

            /** 

             * 以固定周期频率执行任务 

             */  

              public static void executeFixedRate() {  

                      ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  

                      executor.scheduleAtFixedRate(new EchoServer(),0,100, TimeUnit.MILLISECONDS);  

               }  

             间隔指的是连续两次任务开始执行的间隔。

              对于scheduleAtFixedRate方法,当执行任务的时间大于我们指定的间隔时间时,它并不会在指定间隔时开辟一个新的线程并发执行这个任务。而是等待该线程执行完毕。

              2.按指定频率间隔执行某个任务。

              初始化时延时0ms开始执行,本次执行结束后延迟100ms开始下次执行。

               /** 

                * 以固定延迟时间进行执行 

                * 本次任务执行完成后,需要延迟设定的延迟时间,才会执行新的任务 

                */  

                public static void executeFixedDelay() {  

                     ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  

                     executor.scheduleWithFixedDelay(new EchoServer(),0, 100, TimeUnit.MILLISECONDS);  

                  }  

                间隔指的是连续上次执行完成和下次开始执行之间的间隔。

               3.周期定时执行某个任务。

               有时候我们希望一个任务被安排在凌晨3点(访问较少时)周期性的执行一个比较耗费资源的任务,可以使用下面方法设定每天在固定时间执行一次任务。

               /** 

                * 每天晚上8点执行一次 

                * 每天定时安排任务进行执行 

                */  

                public static void executeEightAtNightPerDay() {  

                      ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  

                      long oneDay = 24 * 60 * 60 * 1000;  

                      long initDelay  = getTimeMillis("20:00:00") - System.currentTimeMillis();  

                      initDelay = initDelay > 0 ? initDelay : oneDay + initDelay;  

                      executor.scheduleAtFixedRate(new EchoServer(),initDelay,oneDay, TimeUnit.MILLISECONDS);  

                 }  

 

                 /** 

                  * 获取指定时间对应的毫秒数 

                  * @param time "HH:mm:ss" 

                  * @return 

                  */  

                 private static long getTimeMillis(String time) {  

                     try {  

                            DateFormat dateFormat = new SimpleDateFormat("yy-MM-dd HH:mm:ss");  

                            DateFormat dayFormat = new SimpleDateFormat("yy-MM-dd");  

                            Date curDate = dateFormat.parse(dayFormat.format(new Date()) + " " + time);  

                            return curDate.getTime();  

                      } catch (ParseException e) {  

                          e.printStackTrace();  

                      }  

                      return 0;  

                   }  

3、Spring Boot之使用@Scheduled定时器任务

启动定时任务

package com.scheduling;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class Application {
    public static void main(String[] args) throws Exception {
        SpringApplication.run(Application.class);
    }
}

其中 @EnableScheduling 注解的作用是发现注解@Scheduled的任务并后台执行。

定时任务具体实现类

    接下来我们来创建一个定时任务

package com.Scheduler.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class Scheduler{
    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

    //每隔2秒执行一次
    @Scheduled(fixedRate = 2000)
    public void testTasks() {
        System.out.println("定时任务执行时间:" + dateFormat.format(new Date()));
    }

    //每天3:05执行
    @Scheduled(cron = "0 05 03 ? * *")
    public void testTasks() {
        System.out.println("定时任务执行时间:" + dateFormat.format(new Date()));
    }


}

运行Spring Boot,输出结果为如下,每2秒钟打印出当前时间。

定时任务执行时间:23:28:00
定时任务执行时间:23:28:02
定时任务执行时间:23:28:04
定时任务执行时间:23:28:06
定时任务执行时间:23:28:08

注意: 需要在定时任务的类上加上注释:@Component,在具体的定时任务方法上加上注释@Scheduled即可启动该定时任务。

@Scheduled参数描述

  • @Scheduled(fixedRate=3000):上一次开始执行时间点后3秒再次执行;
  • @Scheduled(fixedDelay=3000):上一次执行完毕时间3秒再次执行;
  • @Scheduled(initialDelay=1000, fixedDelay=3000):第一次延迟1秒执行,然后在上一次执行完毕时间3秒再次执行;
  • @Scheduled(cron="* * * * * ?"):按cron规则执行;

cron规则

    cron表达式中各时间元素使用空格进行分割,表达式有至少6个(也可能7个)分别表示如下含义:

  • 秒(0~59)
  • 分钟(0~59)
  • 小时(0~23)
  • 天(月)(0~31,但是你需要考虑你月的天数)
  • 月(0~11)
  • 天(星期)(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)
  • 7.年份(1970-2099)

    其中每个元素可以是一个值(如6),一个连续区间(9-12),一个间隔时间(8-18/4)(/表示每隔4小时),一个列表(1,3,5),通配符。由于"月份中的日期"和"星期中的日期"这两个元素互斥的,必须要对其中一个设置?.

  • 0 0 10,14,16 * * ? 每天上午10点,下午2点,4点
  • 0 0/30 9-17 * * ?   朝九晚五工作时间内每半小时
  • 0 0 12 ? * WED 表示每个星期三中午12点 
  • "0 0 12 * * ?" 每天中午12点触发 
  • "0 15 10 ? * *" 每天上午10:15触发 
  • "0 15 10 * * ?" 每天上午10:15触发 
  • "0 15 10 * * ? *" 每天上午10:15触发 
  • "0 15 10 * * ? 2005" 2005年的每天上午10:15触发 
  • "0 * 14 * * ?" 在每天下午2点到下午2:59期间的每1分钟触发 
  • "0 0/5 14 * * ?" 在每天下午2点到下午2:55期间的每5分钟触发 
  • "0 0/5 14,18 * * ?" 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发 
  • "0 0-5 14 * * ?" 在每天下午2点到下午2:05期间的每1分钟触发 
  • "0 10,44 14 ? 3 WED" 每年三月的星期三的下午2:10和2:44触发 
  • "0 15 10 ? * MON-FRI" 周一至周五的上午10:15触发 
  • "0 15 10 15 * ?" 每月15日上午10:15触发 
  • "0 15 10 L * ?" 每月最后一日的上午10:15触发 
  • "0 15 10 ? * 6L" 每月的最后一个星期五上午10:15触发 
  • "0 15 10 ? * 6L 2002-2005" 2002年至2005年的每月的最后一个星期五上午10:15触发 
  • "0 15 10 ? * 6#3" 每月的第三个星期五上午10:15触发 

有些子表达式能包含一些范围或列表

“*”字符代表所有可能的值

    因此,“*”在子表达式()里表示每个月的含义,“*”在子表达式(天(星期))表示星期的每一天

 

“/”字符用来指定数值的增量

    例如:在子表达式(分钟)里的“0/15”表示从第0分钟开始,每15分钟

    在子表达式(分钟)里的“3/20”表示从第3分钟开始,每20分钟(它和“3,23,43”)的含义一样


“?”字符仅被用于天(月)和天(星期)两个子表达式,表示不指定值

    当2个子表达式其中之一被指定了值以后,为了避免冲突,需要将另一个子表达式的值设为“?”

 

“L” 字符仅被用于天(月)和天(星期)两个子表达式,它是单词“last”的缩写

    但是它在两个子表达式里的含义是不同的。

  • 在天(月)子表达式中,“L”表示一个月的最后一天
  • 在天(星期)自表达式中,“L”表示一个星期的最后一天,也就是SAT
  • 如果在“L”前有具体的内容,它就具有其他的含义了
  • 例如:“6L”表示这个月的倒数第6天,“FRIL”表示这个月的最一个星期五
  • 注意:在使用“L”参数时,不要指定列表或范围,因为这会导致问题

 

字段 允许值 允许的特殊字符
0-59 , - * /
0-59 , - * /
小时 0-23 , - * /
日期 1月31日 , - * ? / L W C
月份 1-12 或者 JAN-DEC , - * /
星期 1-7 或者 SUN-SAT , - * ? / L C #
年(可选) 留空, 1970-2099

你可能感兴趣的:(java)