提交 c35c23d7 authored 作者: xuxueli's avatar xuxueli

update document

上级 71fe908b
...@@ -91,9 +91,8 @@ public class XxlJobServiceImpl implements XxlJobService { ...@@ -91,9 +91,8 @@ public class XxlJobServiceImpl implements XxlJobService {
} }
// ChildJobId valid // ChildJobId valid
String childJobId = jobInfo.getChildJobId(); if (jobInfo.getChildJobId()!=null && jobInfo.getChildJobId().trim().length()>0) {
if (childJobId !=null && childJobId.trim().length()>0) { String[] childJobIds = jobInfo.getChildJobId().split(",");
String[] childJobIds = childJobId.split(",");
for (String childJobIdItem: childJobIds) { for (String childJobIdItem: childJobIds) {
if (childJobIdItem!=null && childJobIdItem.trim().length()>0 && isNumeric(childJobIdItem)) { if (childJobIdItem!=null && childJobIdItem.trim().length()>0 && isNumeric(childJobIdItem)) {
XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem)); XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem));
...@@ -106,6 +105,15 @@ public class XxlJobServiceImpl implements XxlJobService { ...@@ -106,6 +105,15 @@ public class XxlJobServiceImpl implements XxlJobService {
MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_unvalid")), childJobIdItem)); MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_unvalid")), childJobIdItem));
} }
} }
// join , avoid "xxx,,"
String temp = "";
for (String item:childJobIds) {
temp += item + ",";
}
temp = temp.substring(0, temp.length()-1);
jobInfo.setChildJobId(temp);
} }
// add in db // add in db
...@@ -147,9 +155,8 @@ public class XxlJobServiceImpl implements XxlJobService { ...@@ -147,9 +155,8 @@ public class XxlJobServiceImpl implements XxlJobService {
} }
// ChildJobId valid // ChildJobId valid
String childJobId = jobInfo.getChildJobId(); if (jobInfo.getChildJobId()!=null && jobInfo.getChildJobId().trim().length()>0) {
if (childJobId !=null && childJobId.trim().length()>0) { String[] childJobIds = jobInfo.getChildJobId().split(",");
String[] childJobIds = childJobId.split(",");
for (String childJobIdItem: childJobIds) { for (String childJobIdItem: childJobIds) {
if (childJobIdItem!=null && childJobIdItem.trim().length()>0 && isNumeric(childJobIdItem)) { if (childJobIdItem!=null && childJobIdItem.trim().length()>0 && isNumeric(childJobIdItem)) {
XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem)); XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem));
...@@ -162,6 +169,15 @@ public class XxlJobServiceImpl implements XxlJobService { ...@@ -162,6 +169,15 @@ public class XxlJobServiceImpl implements XxlJobService {
MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_unvalid")), childJobIdItem)); MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_unvalid")), childJobIdItem));
} }
} }
// join , avoid "xxx,,"
String temp = "";
for (String item:childJobIds) {
temp += item + ",";
}
temp = temp.substring(0, temp.length()-1);
jobInfo.setChildJobId(temp);
} }
// group valid // group valid
......
...@@ -119,6 +119,7 @@ $(function() { ...@@ -119,6 +119,7 @@ $(function() {
if ('BEAN' != row.glueType) { if ('BEAN' != row.glueType) {
var codeUrl = base_url +'/jobcode?jobId='+ row.id; var codeUrl = base_url +'/jobcode?jobId='+ row.id;
codeBtn = '<li><a href="'+ codeUrl +'" target="_blank" >GLUE IDE</a></li>\n'; codeBtn = '<li><a href="'+ codeUrl +'" target="_blank" >GLUE IDE</a></li>\n';
codeBtn += '<li class="divider"></li>\n';
} }
// data // data
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论