升级spring-boot到最新版本2.5.8
This commit is contained in:
parent
0318679b02
commit
5bd0a43d05
3
pom.xml
3
pom.xml
@ -15,7 +15,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
<version>2.5.6</version>
|
<version>2.5.8</version>
|
||||||
<relativePath />
|
<relativePath />
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -39,7 +39,6 @@
|
|||||||
<oshi.version>5.8.6</oshi.version>
|
<oshi.version>5.8.6</oshi.version>
|
||||||
<jna.version>5.10.0</jna.version>
|
<jna.version>5.10.0</jna.version>
|
||||||
<velocity.version>2.3</velocity.version>
|
<velocity.version>2.3</velocity.version>
|
||||||
<log4j2.version>2.17.0</log4j2.version>
|
|
||||||
<oracle.version>10.2.0.4.0</oracle.version>
|
<oracle.version>10.2.0.4.0</oracle.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ public class ScheduleConfig
|
|||||||
prop.put("org.quartz.threadPool.threadCount", "20");
|
prop.put("org.quartz.threadPool.threadCount", "20");
|
||||||
prop.put("org.quartz.threadPool.threadPriority", "5");
|
prop.put("org.quartz.threadPool.threadPriority", "5");
|
||||||
// JobStore配置
|
// 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.isClustered", "true");
|
||||||
prop.put("org.quartz.jobStore.clusterCheckinInterval", "15000");
|
prop.put("org.quartz.jobStore.clusterCheckinInterval", "15000");
|
||||||
|
Loading…
Reference in New Issue
Block a user