feat: 添加MySQL驱动依赖支持Spring Batch功能

添加了MySQL连接器依赖以支持Spring Batch数据源兼容性,同时排除了Quartz自动配置避免定时任务冲突。```
This commit is contained in:
hejiayang
2026-03-09 09:24:49 +08:00
parent d98884ea4c
commit 10d5e6ca4a
3 changed files with 15 additions and 1 deletions
+6
View File
@@ -56,6 +56,12 @@
<groupId>com.renkang</groupId>
<artifactId>font-resources</artifactId>
</dependency>
<!-- MySQL 驱动 (用于 Spring Batch 数据源兼容) -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>