Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Eladmin
Commits
4b845b74
Commit
4b845b74
authored
Jun 07, 2021
by
Zheng Jie
Browse files
[Bug修复](master): update ExecutionJob.java
close
https://github.com/elunez/eladmin/issues/620
parent
10dcf6e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
eladmin-system/src/main/java/me/zhengjie/modules/quartz/utils/ExecutionJob.java
View file @
4b845b74
...
...
@@ -82,7 +82,7 @@ public class ExecutionJob extends QuartzJobBean {
System
.
out
.
println
(
"任务执行完毕,任务名称:"
+
quartzJob
.
getJobName
()
+
", 执行时间:"
+
times
+
"毫秒"
);
System
.
out
.
println
(
"--------------------------------------------------------------"
);
// 判断是否存在子任务
if
(
quartzJob
.
getSubTask
()
!=
null
){
if
(
StringUtils
.
isNotBlank
(
quartzJob
.
getSubTask
()
)
){
String
[]
tasks
=
quartzJob
.
getSubTask
().
split
(
"[,,]"
);
// 执行子任务
quartzJobService
.
executionSubJob
(
tasks
);
...
...
Write
Preview
Supports
Markdown
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