diff --git a/pom.xml b/pom.xml index 3803d05dd..56e2d8105 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,6 @@ 1.8 3.1.1 1.8.0 - 3.0.14.RELEASE 2.1.0 1.2.8 1.21 @@ -33,7 +32,6 @@ 1.4 4.1.2 2.3 - 2.17.0 @@ -44,7 +42,7 @@ org.springframework.boot spring-boot-dependencies - 2.5.6 + 2.5.8 pom import @@ -84,19 +82,6 @@ ${shiro.version} - - - org.thymeleaf - thymeleaf-spring5 - ${thymeleaf.version} - - - - org.thymeleaf - thymeleaf - ${thymeleaf.version} - - com.github.theborakompanioni @@ -192,19 +177,6 @@ ${fastjson.version} - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - - org.apache.logging.log4j - log4j-to-slf4j - ${log4j2.version} - - com.ruoyi diff --git a/ruoyi-quartz/src/main/java/com/ruoyi/quartz/config/ScheduleConfig.java b/ruoyi-quartz/src/main/java/com/ruoyi/quartz/config/ScheduleConfig.java index e35eb26e4..04db2c9db 100644 --- a/ruoyi-quartz/src/main/java/com/ruoyi/quartz/config/ScheduleConfig.java +++ b/ruoyi-quartz/src/main/java/com/ruoyi/quartz/config/ScheduleConfig.java @@ -29,7 +29,7 @@ public class ScheduleConfig prop.put("org.quartz.threadPool.threadCount", "20"); prop.put("org.quartz.threadPool.threadPriority", "5"); // JobStore配置 - prop.put("org.quartz.jobStore.class", "org.quartz.impl.jdbcjobstore.JobStoreTX"); + prop.put("org.quartz.jobStore.class", "org.springframework.scheduling.quartz.LocalDataSourceJobStore"); // 集群配置 prop.put("org.quartz.jobStore.isClustered", "true"); prop.put("org.quartz.jobStore.clusterCheckinInterval", "15000");