美文网首页
springboot使用定时器

springboot使用定时器

作者: 我想编程 | 来源:发表于2018-03-12 17:52 被阅读202次

    使用定时器

    1. 开启定时任务功能
    @SpringBootApplication
    @EnableScheduling
    public class Application {
        public static void main(String[] args) {
            SpringApplication.run(Application.class, args);
        }
    }
    
    1. 配置定时任务
    @Component
    public class Task {
        private int count=0;
        @Scheduled(cron="*/6 * * * * ?")
        private void process() {
            System.out.println("this is scheduler task runing  "+(count++));
        }
    }
    

    任务执行规则

    @Scheduled注解:

    @Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    @Repeatable(Schedules.class)
    public @interface Scheduled {
    
        /**
         * A cron-like expression, extending the usual UN*X definition to include
         * triggers on the second as well as minute, hour, day of month, month
         * and day of week.  e.g. {@code "0 * * * * MON-FRI"} means once per minute on
         * weekdays (at the top of the minute - the 0th second).
         * @return an expression that can be parsed to a cron schedule
         * @see org.springframework.scheduling.support.CronSequenceGenerator
         */
        String cron() default "";
    
        /**
         * A time zone for which the cron expression will be resolved. By default, this
         * attribute is the empty String (i.e. the server's local time zone will be used).
         * @return a zone id accepted by {@link java.util.TimeZone#getTimeZone(String)},
         * or an empty String to indicate the server's default time zone
         * @since 4.0
         * @see org.springframework.scheduling.support.CronTrigger#CronTrigger(String, java.util.TimeZone)
         * @see java.util.TimeZone
         */
        String zone() default "";
    
        /**
         * Execute the annotated method with a fixed period in milliseconds between the
         * end of the last invocation and the start of the next.
         * @return the delay in milliseconds
         */
        long fixedDelay() default -1;
    
        /**
         * Execute the annotated method with a fixed period in milliseconds between the
         * end of the last invocation and the start of the next.
         * @return the delay in milliseconds as a String value, e.g. a placeholder
         * @since 3.2.2
         */
        String fixedDelayString() default "";
    
        /**
         * Execute the annotated method with a fixed period in milliseconds between
         * invocations.
         * @return the period in milliseconds
         */
        long fixedRate() default -1;
    
        /**
         * Execute the annotated method with a fixed period in milliseconds between
         * invocations.
         * @return the period in milliseconds as a String value, e.g. a placeholder
         * @since 3.2.2
         */
        String fixedRateString() default "";
    
        /**
         * Number of milliseconds to delay before the first execution of a
         * {@link #fixedRate()} or {@link #fixedDelay()} task.
         * @return the initial delay in milliseconds
         * @since 3.2
         */
        long initialDelay() default -1;
    
        /**
         * Number of milliseconds to delay before the first execution of a
         * {@link #fixedRate()} or {@link #fixedDelay()} task.
         * @return the initial delay in milliseconds as a String value, e.g. a placeholder
         * @since 3.2.2
         */
        String initialDelayString() default "";
    
    }
    
    • cron:指定cron表达式
    • zone:默认使用服务器默认时区。可以设置为java.util.TimeZone中的zoneId
    • fixedDelay:从上一个任务完成开始到下一个任务开始的间隔,单位毫秒
    • fixedDelayString:同上,时间值是String类型
    • fixedRate:从上一个任务开始到下一个任务开始的间隔,单位毫秒
    • fixedRateString:同上,时间值是String类型
    • initialDelay:任务首次执行延迟的时间,单位毫秒
    • initialDelayString:同上,时间值是String类型

    cron表达式

    Cron表达式是一个字符串,字符串以5或6个空格隔开,分为6或7个域,每一个域代表一个含义,Cron有如下两种语法格式:

    • Seconds Minutes Hours DayofMonth Month DayofWeek Year
    • Seconds Minutes Hours DayofMonth Month DayofWeek

    可以填充的值:

    • Seconds: 可出现, - * /四个字符,有效范围为0-59的整数
    • Minutes: 可出现, - * /四个字符,有效范围为0-59的整数
    • Hours: 可出现, - * /四个字符,有效范围为0-23的整数
    • DayofMonth: 可出现, - * / ? L W C八个字符,有效范围为0-31的整数
    • Month: 可出现, - * /四个字符,有效范围为1-12的整数或JAN-DEC
    • DayofWeek: 可出现, - * / ? L C #四个字符,有效范围为1-7的整数或SUN-SAT两个范围。1表示星期天,2表示星期一, 依次类推
    • Year: 可出现, - * /四个字符,有效范围为1970-2099年

    符号代表的意义:

    • *:表示匹配该域的任意值,假如在Minutes域使用*, 即表示每分钟都会触发事件。
    • ?:只能用在DayofMonth和DayofWeek两个域。它也匹配域的任意值,但实际不会。因为DayofMonth和 DayofWeek会相互影响。例如想在每月的20日触发调度,不管20日到底是星期几,则只能使用如下写法: 13 13 15 20 ?, 其中最后一位只能用?,而不能使用,如果使用*表示不管星期几都会触发,实际上并不是这样。
    • -:表示范围,例如在Minutes域使用5-20,表示从5分到20分钟每分钟触发一次。
    • /:表示起始时间开始触发,然后每隔固定时间触发一次,例如在Minutes域使用5/20,则意味着5分钟触发一次,而25,45等分别触发一次。
      ,:表示列出枚举值值。例如:在Minutes域使用5,20,则意味着在5和20分每分钟触发一次。
    • L:表示最后,只能出现在DayofWeek和DayofMonth域,如果在DayofWeek域使用5L,意味着在最后的一个星期四触发。
    • W:表示有效工作日(周一到周五),只能出现在DayofMonth域,系统将在离指定日期的最近的有效工作日触发事件。例如:在 DayofMonth使用5W,如果5日是星期六,则将在最近的工作日:星期五,即4日触发。如果5日是星期天,则在6日(周一)触发;如果5日在星期一 到星期五中的一天,则就在5日触发。另外一点,W的最近寻找不会跨过月份。
    • LW:这两个字符可以连用,表示在某个月最后一个工作日,即最后一个星期五。
    • #:用于确定每个月第几个星期几,只能出现在DayofMonth域。例如在4#2,表示某月的第二个星期三。

    相关文章

      网友评论

          本文标题:springboot使用定时器

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