springboot的定时任务
Posted echola
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot的定时任务相关的知识,希望对你有一定的参考价值。
1、定时任务的创建方式:
- 基于注解@Schedule和,定时任务执行时间较短,并且比较单一
2、@Schedule和@EnableScheduling
(1)在pom.xml中加入依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency>
(2)在springboot的启动类DemoApplication上添加@EnableScheduling
package com.example.demo;
@SpringBootApplication @EnableScheduling public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); System.out.println("你好"); } }
(3)创建定时任务类
package com.example.demo.Time;
@Component public class timer { @Scheduled(cron = "0/15 * * * * ? ") //每隔15秒执行一次 private void test(){ System.out.println("任务开始时间:"+new Date()); } }
执行效果:
以上是关于springboot的定时任务的主要内容,如果未能解决你的问题,请参考以下文章
springboot项目使用SchedulingConfigurer实现多个定时任务
#yyds干货盘点# springboot整合Elastic Job实现分片配置定时任务