xuxueli 7 years ago
parent
commit
d9355f421f

+ 4 - 1
README.md View File

34
 It's core design goal is to develop quickly and learn simple, lightweight, and easy to expand. 
34
 It's core design goal is to develop quickly and learn simple, lightweight, and easy to expand. 
35
 Now, it's already open source, and many companies use it in production environments, real "out-of-the-box".
35
 Now, it's already open source, and many companies use it in production environments, real "out-of-the-box".
36
 
36
 
37
-XXL-JOB是一个轻量级分布式任务调度框架,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线,开箱即用。
37
+XXL-JOB是一个轻量级分布式任务调度平台,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线,开箱即用。
38
 
38
 
39
 
39
 
40
 ## Documentation
40
 ## Documentation
188
     - 94、咖啡易融
188
     - 94、咖啡易融
189
     - 95、梧桐诚选
189
     - 95、梧桐诚选
190
     - 96、恒大地产 (恒大)
190
     - 96、恒大地产 (恒大)
191
+    - 97、昆明龙慧
192
+    - 98、上海涩瑶软件
193
+    - 99、易信 (网易)
191
 	- ……
194
 	- ……
192
 
195
 
193
 > 更多接入的公司,欢迎在 [登记地址](https://github.com/xuxueli/xxl-job/issues/1 ) 登记,登记仅仅为了产品推广。
196
 > 更多接入的公司,欢迎在 [登记地址](https://github.com/xuxueli/xxl-job/issues/1 ) 登记,登记仅仅为了产品推广。

+ 3 - 0
doc/XXL-JOB-English-Documentation.md View File

150
     - 94、咖啡易融
150
     - 94、咖啡易融
151
     - 95、梧桐诚选
151
     - 95、梧桐诚选
152
     - 96、恒大地产 (恒大)
152
     - 96、恒大地产 (恒大)
153
+    - 97、昆明龙慧
154
+    - 98、上海涩瑶软件
155
+    - 99、易信 (网易)
153
 	- ……
156
 	- ……
154
 
157
 
155
 > The company that access and use this product is welcome to register at the [address](https://github.com/xuxueli/xxl-job/issues/1 ), only for product promotion. 
158
 > The company that access and use this product is welcome to register at the [address](https://github.com/xuxueli/xxl-job/issues/1 ), only for product promotion. 

+ 4 - 1
doc/XXL-JOB官方文档.md View File

11
 ## 一、简介
11
 ## 一、简介
12
 
12
 
13
 ### 1.1 概述
13
 ### 1.1 概述
14
-XXL-JOB是一个轻量级分布式任务调度框架,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线,开箱即用。
14
+XXL-JOB是一个轻量级分布式任务调度平台,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线,开箱即用。
15
 
15
 
16
 ### 1.2 特性
16
 ### 1.2 特性
17
 - 1、简单:支持通过Web页面对任务进行CRUD操作,操作简单,一分钟上手;
17
 - 1、简单:支持通过Web页面对任务进行CRUD操作,操作简单,一分钟上手;
165
     - 94、咖啡易融
165
     - 94、咖啡易融
166
     - 95、梧桐诚选
166
     - 95、梧桐诚选
167
     - 96、恒大地产 (恒大)
167
     - 96、恒大地产 (恒大)
168
+    - 97、昆明龙慧
169
+    - 98、上海涩瑶软件
170
+    - 99、易信 (网易)
168
 	- ……
171
 	- ……
169
 
172
 
170
 > 更多接入的公司,欢迎在 [登记地址](https://github.com/xuxueli/xxl-job/issues/1 ) 登记,登记仅仅为了产品推广。
173
 > 更多接入的公司,欢迎在 [登记地址](https://github.com/xuxueli/xxl-job/issues/1 ) 登记,登记仅仅为了产品推广。

+ 3 - 3
xxl-job-core/src/main/java/com/xxl/job/core/thread/TriggerCallbackThread.java View File

151
             try {
151
             try {
152
                 ReturnT<String> callbackResult = adminBiz.callback(callbackParamList);
152
                 ReturnT<String> callbackResult = adminBiz.callback(callbackParamList);
153
                 if (callbackResult!=null && ReturnT.SUCCESS_CODE == callbackResult.getCode()) {
153
                 if (callbackResult!=null && ReturnT.SUCCESS_CODE == callbackResult.getCode()) {
154
-                    callbackLog(callbackParamList, "<br>----------- xxl-job callback success");
154
+                    callbackLog(callbackParamList, "<br>----------- xxl-job job callback finish.");
155
                     callbackRet = true;
155
                     callbackRet = true;
156
                     break;
156
                     break;
157
                 } else {
157
                 } else {
158
-                    callbackLog(callbackParamList, "<br>----------- xxl-job callback fail, callbackResult:" + callbackResult);
158
+                    callbackLog(callbackParamList, "<br>----------- xxl-job job callback fail, callbackResult:" + callbackResult);
159
                 }
159
                 }
160
             } catch (Exception e) {
160
             } catch (Exception e) {
161
-                callbackLog(callbackParamList, "<br>----------- xxl-job callback error, errorMsg:" + e.getMessage());
161
+                callbackLog(callbackParamList, "<br>----------- xxl-job job callback error, errorMsg:" + e.getMessage());
162
             }
162
             }
163
         }
163
         }
164
         if (!callbackRet) {
164
         if (!callbackRet) {