1. 添加依赖
在 pom.xml 文件中只需引入 spring-boot-starter
的依赖即可:
代码清单:spring-boot-scheduler/pom.xml
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>
2. 配置文件
配置文件无需过多的配置:
代码清单:spring-boot-scheduler/src/main/resources/application.yml
server: port: 8080 spring: application: name: spring-boot-scheduler
3. 启动主类
启动主类需增加注解 @EnableScheduling
表示我们要开启定时任务这个服务。
代码清单:spring-boot-scheduler/src/main/java/com/springboot/springbootscheduler/SpringBootSchedulerApplication.java
@SpringBootApplication @EnableScheduling public class SpringBootSchedulerApplication { public static void main(String[] args) { SpringApplication.run(SpringBootSchedulerApplication.class, args); } }
4. 定时任务实现类
代码清单:spring-boot-scheduler/src/main/java/com/springboot/springbootscheduler/task/Task.java
@Component public class Task { private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss"); private final Logger logger = LoggerFactory.getLogger(Task.class); /** * cron表达式 */ @Scheduled(cron = "*/5 * * * * ?") private void task1() { logger.info("task1 正在执行,现在时间:{}", dateFormat.format(new Date())); } /** * 上一次开始执行时间点之后5秒再执行 */ @Scheduled(fixedRate = 5000) public void task2() { logger.info("task2 正在执行,现在时间:{}", dateFormat.format(new Date())); } /** * 上一次执行完毕时间点之后5秒再执行 */ @Scheduled(fixedDelay = 5000) public void task3() { logger.info("task3 正在执行,现在时间:{}", dateFormat.format(new Date())); } /** * 第一次延迟1秒后执行,之后按fixedRate的规则每5秒执行一次 */ @Scheduled(initialDelay = 1000, fixedRate = 5000) public void task4() { logger.info("task4 正在执行,现在时间:{}", dateFormat.format(new Date())); } }
4.1 参数 cron
cron表达式语法:
[秒] [分] [小时] [日] [月] [周] [年]
注:[年]不是必须的域,可以省略[年],则一共6个域
秒 | 是 | 0-59 | , – * / |
分 | 是 | 0-59 | , – * / |
时 | 是 | 0-23 | , – * / |
日 | 是 | 1-31 | , – * ? / L W |
月 | 是 | 1-12 / JAN-DEC | , – * / |
周 | 是 | 1-7 or SUN-SAT | , – * ? / L # |
年 | 否 | 1970-2099 | , – * / |
通配符说明:
-
*
表示所有值。 例如:在分的字段上设置 *,表示每一分钟都会触发。 -
?
表示不指定值。使用的场景为不需要关心当前设置这个字段的值。例如:要在每月的10号触发一个操作,但不关心是周几,所以需要周位置的那个字段设置为”?” 具体设置为 0 0 0 10 * ? -
-
表示区间。例如 在小时上设置 “10-12”,表示 10,11,12点都会触发。 -
,
表示指定多个值,例如在周字段上设置 “MON,WED,FRI” 表示周一,周三和周五触发 -
/
用于递增触发。如在秒上面设置”5/15” 表示从5秒开始,每增15秒触发(5,20,35,50)。 在月字段上设置’1/3’所示每月1号开始,每隔三天触发一次。 -
L
表示最后的意思。在日字段设置上,表示当月的最后一天(依据当前月份,如果是二月还会依据是否是润年[leap]), 在周字段上表示星期六,相当于”7”或”SAT”。如果在”L”前加上数字,则表示该数据的最后一个。例如在周字段上设置”6L”这样的格式,则表示“本月最后一个星期五” -
W
表示离指定日期的最近那个工作日(周一至周五). 例如在日字段上置”15W”,表示离每月15号最近的那个工作日触发。如果15号正好是周六,则找最近的周五(14号)触发, 如果15号是周未,则找最近的下周一(16号)触发.如果15号正好在工作日(周一至周五),则就在该天触发。如果指定格式为 “1W”,它则表示每月1号往后最近的工作日触发。如果1号正是周六,则将在3号下周一触发。(注,”W”前只能设置具体的数字,不允许区间”-“)。 -
#
序号(表示每月的第几个周几),例如在周字段上设置”6#3”表示在每月的第三个周六.注意如果指定”#5”,正好第五周没有周六,则不会触发该配置(用在母亲节和父亲节再合适不过了) ;小提示:’L’和 ‘W’可以一组合使用。如果在日字段上设置”LW”,则表示在本月的最后一个工作日触发;周字段的设置,若使用英文字母是不区分大小写的,即MON与mon相同。
4.2 参数 zone
时区,接收一个java.util.TimeZone#ID。cron表达式会基于该时区解析。默认是一个空字符串,即取服务器所在地的时区。比如我们一般使用的时区Asia/Shanghai。该字段我们一般留空。
4.3 参数 fixedDelay 和 fixedDelayString
这两个参数其实含义是一样的,只是一个使用的是 Long 类型,一个使用的是 String 类型。
含义都是上一次执行完毕时间点之后多长时间再执行,具体使用示例在上面的代码中已经给出。
4.4 参数 fixedRate 和 fixedRateString
这一组参数和上面的那组参数也是一样的,同样的是类型不同,含义是上一次开始执行时间点之后多长时间再执行。
4.5 参数 initialDelay 和 initialDelayString
这组参数的含义是第一次延迟多长时间后再执行。
4.6 附上 org.springframework.scheduling.annotation.Scheduled
@Scheduled
注解的使用方式其实在源码里已经讲的很清楚了,这里附上供大家参考:
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Repeatable(Schedules.class) public @interface Scheduled { /** * A special cron expression value that indicates a disabled trigger: {@value}. * <p>This is primarily meant for use with ${...} placeholders, allowing for * external disabling of corresponding scheduled methods. * @since 5.1 */ String CRON_DISABLED = "-"; /** * 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. * <p>E.g. {@code "0 * * * * MON-FRI"} means once per minute on weekdays * (at the top of the minute - the 0th second). * <p>The special value {@link #CRON_DISABLED "-"} indicates a disabled cron trigger, * primarily meant for externally specified values resolved by a ${...} placeholder. * @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 * or a {@link java.time.Duration#parse java.time.Duration} compliant value * @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 * or a {@link java.time.Duration#parse java.time.Duration} compliant value * @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 * or a {@link java.time.Duration#parse java.time.Duration} compliant value * @since 3.2.2 */ String initialDelayString() default ""; }
(企业架构源码可以加求球:三五三六二四七二五九)
相关推荐
关于 Spring Boot 定时任务接收邮件并且存储附件的方法讲解 Spring Boot 是一个基于 Java 的框架,它提供了许多实用的功能,包括定时任务。在 Spring Boot 中实现定时任务非常简单,只需要使用两个注解:`@...
Spring boot定时任务
在Spring Boot框架中,定时任务是一项非常重要的功能,它允许开发者在特定的时间间隔执行特定的任务。Spring Boot通过集成Spring Framework的Task Execution和Scheduling模块,提供了便捷的方式来管理和执行定时任务...
**一、Spring Boot定时任务** 1. **@Scheduled注解**:Spring Boot提供了对定时任务的支持,主要通过`@Scheduled`注解来实现。该注解可以放在方法上,表示这个方法会按照指定的周期执行。例如: ```java @Scheduled...
Spring定时任务的几种实现,欢迎交流!
在Spring Boot应用中,动态配置定时任务是提升系统灵活性和可维护性的重要手段。Spring Boot集成了Spring Framework的TaskExecution和TaskScheduling模块,使得我们可以方便地创建和管理定时任务。本文将深入探讨...
在Spring Boot框架中,定时任务的实现主要依赖于Spring的`@EnableScheduling`注解和`@Scheduled`注解。这两个注解使得开发者能够方便地在Spring Boot应用中创建和管理周期性的任务。以下是对这两个核心概念的详细...
Spring Boot 定时任务的原理及动态创建详解 Spring Boot 是一个非常流行的 Java 框架,它提供了许多有用的功能,包括定时任务。定时任务是指在特定的时间点执行特定的任务,例如每天早上的 8 点执行某个任务。...
在Spring框架中,定时任务是实现系统自动化运行关键任务的重要工具。Spring提供了多种方式来创建和管理定时任务,包括基于接口的TaskExecutor、基于注解的@Scheduled和集成Quartz Scheduler。下面将详细讲解这三种...
Spring Boot 定时任务的使用方法 Spring Boot 是一个基于 Java 的框架,提供了许多强大的功能,其中之一就是定时任务。定时任务是指在特定的时间点或时间间隔执行某些操作,以满足业务需求。在 Spring Boot 中,...
Spring Boot 定时任务的实现方法 在 Spring Boot 中实现定时任务是一件相对简单的事情。Spring Boot 提供了一个非常方便的接口来实现定时任务,只需要在需要定时执行的函数前加上 @Scheduled 注解,就可以将其转换...
1.17 Spring Boot定时任务的使用 1.18 Spring Boot使用Druid和监控配置 1.19 Spring Boot使用Druid(编程注入) 1.20 Spring Boot普通类调用bean 1.21 使用模板(thymeleaf-freemarker) 1.22 Spring Boot 添加JSP...
Spring Boot 定时任务单线程多线程实现代码解析 Spring Boot 提供了多种方式来实现定时任务,例如使用 @Scheduled 注解来标注一个定时任务方法。在本文中,我们将详细介绍如何使用 @Scheduled 注解来实现单线程和多...
在Spring Boot应用中,定时任务是一项非常实用的功能,它允许我们按照预定的时间间隔执行特定的任务。Spring Boot提供了Spring Scheduler抽象来实现这样的需求,使得开发者能够方便地管理和控制定时任务。本篇文章将...
总之,"springboot-scheduler定时任务学习demo源码"是一个很好的学习资源,它涵盖了Spring Boot定时任务的基本用法和配置,包括`@Scheduled`、`@EnableScheduling`、cron表达式以及异步任务执行。通过阅读和分析这个...
4. **添加依赖**:在Dependencies(依赖)一栏,可以通过搜索框添加Spring Boot的定时任务支持,即`spring-boot-starter-quartz`或`spring-boot-starter-task`。后者是Spring Boot官方推荐的定时任务解决方案。 5. ...
对于更高级的监控需求,可以考虑集成如Spring Boot Actuator等工具,或者使用专门的日志服务来跟踪和分析定时任务的执行情况。 综上所述,Spring提供的定时任务功能使得开发者能够轻松地在非Web项目中实现复杂的...
spring-boot-scheduler:spring boot和定时任务案例 spring-boot-web:web开发综合使用案例 spring-boot-mail:spring boot和邮件服务 spring-boot-mongodb:spring boot和mongodb的使用 spring-boot-multi-mongodb...
通过以上方式,你可以灵活地调整Spring Boot定时任务的执行策略,以适应不同场景下的需求,避免任务阻塞,提高系统效率。同时,对于cron表达式的理解和正确使用也是确保定时任务准确执行的关键。
Spring Boot 中使用 @Scheduled 创建定时任务 Spring Boot 框架为我们提供了多种方式来创建定时任务,其中一种方式是使用 @Scheduled 注解。@Scheduled 是 Spring Framework 中的一种注解,用于标记需要定时执行的...