任务参数忽略双引号中的逗号

pull/346/head
RuoYi 2021-11-16 11:51:59 +08:00
parent 6d3c988768
commit 7cd98d6dd0
1 changed files with 1 additions and 1 deletions

View File

@ -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++)
{