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
2f380f0c
Unverified
Commit
2f380f0c
authored
Aug 26, 2022
by
若依
Committed by
Gitee
Aug 26, 2022
Browse files
!564 修复执行任务时,若方法入口在任务的父类,则无法执行的问题
Merge pull request !564 from 捏造的信仰/fix-issue-I5NNXI
parents
39efed17
a78b5b7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
ruoyi-quartz/src/main/java/com/ruoyi/quartz/util/JobInvokeUtil.java
View file @
2f380f0c
...
...
@@ -52,12 +52,12 @@ public class JobInvokeUtil
{
if
(
StringUtils
.
isNotNull
(
methodParams
)
&&
methodParams
.
size
()
>
0
)
{
Method
method
=
bean
.
getClass
().
get
Declared
Method
(
methodName
,
getMethodParamsType
(
methodParams
));
Method
method
=
bean
.
getClass
().
getMethod
(
methodName
,
getMethodParamsType
(
methodParams
));
method
.
invoke
(
bean
,
getMethodParamsValue
(
methodParams
));
}
else
{
Method
method
=
bean
.
getClass
().
get
Declared
Method
(
methodName
);
Method
method
=
bean
.
getClass
().
getMethod
(
methodName
);
method
.
invoke
(
bean
);
}
}
...
...
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