spring-boot-starter-quartz的依赖
时间: 2023-10-26 10:06:00 浏览: 208
springboot集成Quartz实现定时任务demo源码案例演示
spring-boot-starter-quartz是一个Spring Boot的starter,它提供了对Quartz调度框架的支持。根据引用,它可以在Spring Boot 1.0.2及以上版本中使用,可以通过以下方式添加依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
```
此外,根据引用,spring-boot-starter-quartz还提供了对其他组件的集成方案,包括Mybatis-Plus、ShardingJdbc等。
阅读全文