xueli.xue 9 年 前
コミット
47011ffdf3

+ 4 - 1
README.md ファイルの表示

23
 	9、支持任务失败次数超阈值邮件报警;
23
 	9、支持任务失败次数超阈值邮件报警;
24
 	10、支持在线查看,执行器详细日志;
24
 	10、支持在线查看,执行器详细日志;
25
 	11、支持远程任务执行终止;
25
 	11、支持远程任务执行终止;
26
+	12、支持登录验证;
26
 
27
 
27
 # 新版本 V1.2.x,新特性
28
 # 新版本 V1.2.x,新特性
28
 	1、支持任务分组;
29
 	1、支持任务分组;
41
 	
42
 	
42
 # 其他说明
43
 # 其他说明
43
 	清楚僵尸任务:qrtz_cron_triggers、qrtz_triggers、qrtz_job_details顺序删除
44
 	清楚僵尸任务:qrtz_cron_triggers、qrtz_triggers、qrtz_job_details顺序删除
44
-	V1.2新增任务日志,记得执行“tables_xxl_log.sql”生成表结构
45
+
46
+# 规划中
47
+	1、任务执行器支持远程加载Groovy;

+ 4 - 0
xxl-job-admin/src/main/webapp/WEB-INF/template/common/common.macro.ftl ファイルの表示

26
   
26
   
27
 	<!-- scrollup -->
27
 	<!-- scrollup -->
28
 	<link rel="stylesheet" href="${request.contextPath}/static/plugins/scrollup/image.css">
28
 	<link rel="stylesheet" href="${request.contextPath}/static/plugins/scrollup/image.css">
29
+	<!-- pace -->
30
+	<link rel="stylesheet" href="${request.contextPath}/static/plugins/pace/pace-theme-minimal.css">
29
 </#macro>
31
 </#macro>
30
 
32
 
31
 <#macro commonScript>
33
 <#macro commonScript>
40
 
42
 
41
     <!-- scrollup -->
43
     <!-- scrollup -->
42
     <script src="${request.contextPath}/static/plugins/scrollup/jquery.scrollUp.min.js"></script>
44
     <script src="${request.contextPath}/static/plugins/scrollup/jquery.scrollUp.min.js"></script>
45
+    <!-- pace -->
46
+    <script src="${request.contextPath}/static/plugins/pace/pace.min.js"></script>
43
     <script src="${request.contextPath}/static/plugins/jquery/jquery.cookie.js"></script>
47
     <script src="${request.contextPath}/static/plugins/jquery/jquery.cookie.js"></script>
44
     <script src="${request.contextPath}/static/js/common.1.js"></script>
48
     <script src="${request.contextPath}/static/js/common.1.js"></script>
45
 </#macro>
49
 </#macro>

+ 18 - 0
xxl-job-admin/src/main/webapp/static/plugins/pace/pace-theme-minimal.css ファイルの表示

1
+/* This is a compiled file, you should be editing the file in the templates directory */
2
+.pace .pace-progress {
3
+  background: #22df80;
4
+  position: fixed;
5
+  z-index: 2000;
6
+  top: 0;
7
+  left: 0;
8
+  height: 2px;
9
+
10
+  -webkit-transition: width 1s;
11
+  -moz-transition: width 1s;
12
+  -o-transition: width 1s;
13
+  transition: width 1s;
14
+}
15
+
16
+.pace-inactive {
17
+  display: none;
18
+}

File diff suppressed because it is too large
+ 2 - 0
xxl-job-admin/src/main/webapp/static/plugins/pace/pace.min.js