mirror of https://gitee.com/y_project/RuoYi.git
任务参数忽略双引号中的逗号
parent
6d3c988768
commit
7cd98d6dd0
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue