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
RuoYi Vue
Commits
2ab96587
Commit
2ab96587
authored
Nov 16, 2021
by
RuoYi
Browse files
任务参数忽略双引号中的逗号
parent
cb9c0e79
Changes
1
Show whitespace changes
Inline
Side-by-side
ruoyi-quartz/src/main/java/com/ruoyi/quartz/util/JobInvokeUtil.java
View file @
2ab96587
...
...
@@ -110,7 +110,7 @@ public class JobInvokeUtil
{
return
null
;
}
String
[]
methodParams
=
methodStr
.
split
(
","
);
String
[]
methodParams
=
methodStr
.
split
(
",
(?=(?:[^\']*\"[^\']*\')*[^\']*$)
"
);
List
<
Object
[]>
classs
=
new
LinkedList
<>();
for
(
int
i
=
0
;
i
<
methodParams
.
length
;
i
++)
{
...
...
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