"jshERP-web/src/git@ustchcs.com:gujinli1118/JSH_ERP.git" did not exist on "b00aa14c4016dd13a31ed8c2af0bf4c58a9ec403"
Commit 2ab96587 authored by RuoYi's avatar RuoYi
Browse files

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

parent cb9c0e79
......@@ -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++)
{
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment