Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
熊鹏飞
/
xxljob220
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fa9c4efe
authored
Jan 09, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
交互优化,尽量避免新开页面窗口;仅WebIDE支持新开页,并提供窗口快速关闭按钮;
parent
ec06ae09
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
4 deletions
doc/XXL-JOB官方文档.md
xxl-job-admin/src/main/java/com/xxl/job/admin/core/model/XxlJobGroup.java
xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js
xxl-job-admin/src/main/resources/templates/jobcode/jobcode.index.ftl
doc/XXL-JOB官方文档.md
View file @
fa9c4efe
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
@@ -1399,6 +1399,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -1399,6 +1399,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
4、项目依赖升级至较新稳定版本,如spring、jackson、groovy、xxl-rpc等等;
-
4、项目依赖升级至较新稳定版本,如spring、jackson、groovy、xxl-rpc等等;
-
5、精简项目,取消第三方依赖,如 commons-collections4 ;
-
5、精简项目,取消第三方依赖,如 commons-collections4 ;
-
6、底层Log调优,应用正常终止取消异常栈信息打印;
-
6、底层Log调优,应用正常终止取消异常栈信息打印;
-
7、交互优化,尽量避免新开页面窗口;仅WebIDE支持新开页,并提供窗口快速关闭按钮;
-
[
迭代中
]
注册中心优化,实时性注册发现:心跳注册间隔10s,refresh失败则首次注册并立即更新注册信息,心跳类似;30s过期销毁;
-
[
迭代中
]
注册中心优化,实时性注册发现:心跳注册间隔10s,refresh失败则首次注册并立即更新注册信息,心跳类似;30s过期销毁;
-
[
迭代中
]
脚本任务,支持数据参数,新版本仅支持单参数不支持需要兼容;
-
[
迭代中
]
脚本任务,支持数据参数,新版本仅支持单参数不支持需要兼容;
-
[
迭代中
]
提供执行器Docker镜像;
-
[
迭代中
]
提供执行器Docker镜像;
...
...
xxl-job-admin/src/main/java/com/xxl/job/admin/core/model/XxlJobGroup.java
View file @
fa9c4efe
...
@@ -15,8 +15,8 @@ public class XxlJobGroup {
...
@@ -15,8 +15,8 @@ public class XxlJobGroup {
private
String
appName
;
private
String
appName
;
private
String
title
;
private
String
title
;
private
int
order
;
private
int
order
;
private
int
addressType
;
// 执行器地址类型:0=自动注册、1=手动录入
private
int
addressType
;
// 执行器地址类型:0=自动注册、1=手动录入
private
String
addressList
;
// 执行器地址列表,多地址逗号分隔(手动录入)
private
String
addressList
;
// 执行器地址列表,多地址逗号分隔(手动录入)
// registry list
// registry list
private
List
<
String
>
registryList
;
// 执行器地址列表(系统注册)
private
List
<
String
>
registryList
;
// 执行器地址列表(系统注册)
...
...
xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js
View file @
fa9c4efe
...
@@ -134,7 +134,7 @@ $(function() {
...
@@ -134,7 +134,7 @@ $(function() {
var
html
=
'<p id="'
+
row
.
id
+
'" >'
+
var
html
=
'<p id="'
+
row
.
id
+
'" >'
+
'<button class="btn btn-primary btn-xs job_trigger" type="button">'
+
I18n
.
jobinfo_opt_run
+
'</button> '
+
'<button class="btn btn-primary btn-xs job_trigger" type="button">'
+
I18n
.
jobinfo_opt_run
+
'</button> '
+
start_stop
+
start_stop
+
'<button class="btn btn-primary btn-xs" type="job_del" type="button" onclick="javascript:window.open(\''
+
logUrl
+
'\')" >'
+
I18n
.
jobinfo_opt_log
+
'</button><br> '
+
'<button class="btn btn-primary btn-xs" type="job_del" type="button" onclick="javascript:window.open(\''
+
logUrl
+
'\'
, \'_self\'
)" >'
+
I18n
.
jobinfo_opt_log
+
'</button><br> '
+
'<button class="btn btn-warning btn-xs update" type="button">'
+
I18n
.
system_opt_edit
+
'</button> '
+
'<button class="btn btn-warning btn-xs update" type="button">'
+
I18n
.
system_opt_edit
+
'</button> '
+
codeBtn
+
codeBtn
+
'<button class="btn btn-danger btn-xs job_operate" _type="job_del" type="button">'
+
I18n
.
system_opt_del
+
'</button> '
+
'<button class="btn btn-danger btn-xs job_operate" _type="job_del" type="button">'
+
I18n
.
system_opt_del
+
'</button> '
+
...
...
xxl-job-admin/src/main/resources/templates/jobcode/jobcode.index.ftl
View file @
fa9c4efe
...
@@ -73,6 +73,12 @@
...
@@ -73,6 +73,12 @@
${I18n.system_save}
${I18n.system_save}
</a>
</a>
</li>
</li>
<li>
<a
href=
"javascript:window.close();"
>
<i
class=
"fa fa-fw fa-close"
></i>
${I18n.system_close}
</a>
</li>
</ul>
</ul>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
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