Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
0e771a6c
Commit
0e771a6c
authored
Dec 27, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
升级spring-boot到最新版本2.5.8
parent
e4df0c6d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
17 deletions
+3
-17
pom.xml
pom.xml
+1
-15
ScheduleConfig.java
...src/main/java/com/ruoyi/quartz/config/ScheduleConfig.java
+1
-1
index.vue
ruoyi-ui/src/views/monitor/job/index.vue
+1
-1
No files found.
pom.xml
View file @
0e771a6c
...
@@ -33,7 +33,6 @@
...
@@ -33,7 +33,6 @@
<poi.version>
4.1.2
</poi.version>
<poi.version>
4.1.2
</poi.version>
<velocity.version>
2.3
</velocity.version>
<velocity.version>
2.3
</velocity.version>
<jwt.version>
0.9.1
</jwt.version>
<jwt.version>
0.9.1
</jwt.version>
<log4j2.version>
2.17.0
</log4j2.version>
</properties>
</properties>
<!-- 依赖声明 -->
<!-- 依赖声明 -->
...
@@ -44,7 +43,7 @@
...
@@ -44,7 +43,7 @@
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-dependencies
</artifactId>
<artifactId>
spring-boot-dependencies
</artifactId>
<version>
2.5.
6
</version>
<version>
2.5.
8
</version>
<type>
pom
</type>
<type>
pom
</type>
<scope>
import
</scope>
<scope>
import
</scope>
</dependency>
</dependency>
...
@@ -151,19 +150,6 @@
...
@@ -151,19 +150,6 @@
<version>
${fastjson.version}
</version>
<version>
${fastjson.version}
</version>
</dependency>
</dependency>
<!-- log4j日志组件 -->
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-api
</artifactId>
<version>
${log4j2.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-to-slf4j
</artifactId>
<version>
${log4j2.version}
</version>
</dependency>
<!-- Token生成与解析-->
<!-- Token生成与解析-->
<dependency>
<dependency>
<groupId>
io.jsonwebtoken
</groupId>
<groupId>
io.jsonwebtoken
</groupId>
...
...
ruoyi-quartz/src/main/java/com/ruoyi/quartz/config/ScheduleConfig.java
View file @
0e771a6c
...
@@ -29,7 +29,7 @@ public class ScheduleConfig
...
@@ -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"
);
...
...
ruoyi-ui/src/views/monitor/job/index.vue
View file @
0e771a6c
...
@@ -204,7 +204,7 @@
...
@@ -204,7 +204,7 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"
错误
策略"
prop=
"misfirePolicy"
>
<el-form-item
label=
"
执行
策略"
prop=
"misfirePolicy"
>
<el-radio-group
v-model=
"form.misfirePolicy"
size=
"small"
>
<el-radio-group
v-model=
"form.misfirePolicy"
size=
"small"
>
<el-radio-button
label=
"1"
>
立即执行
</el-radio-button>
<el-radio-button
label=
"1"
>
立即执行
</el-radio-button>
<el-radio-button
label=
"2"
>
执行一次
</el-radio-button>
<el-radio-button
label=
"2"
>
执行一次
</el-radio-button>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment