update document

This commit is contained in:
xuxueli 2020-01-02 21:41:03 +08:00
parent 8516d7bb50
commit 22b80c5ac8
2 changed files with 3 additions and 2 deletions

View File

@ -1687,6 +1687,7 @@ public ReturnT<String> execute(String param) {
### 6.28 版本 v2.2.0 Release Notes[迭代中] ### 6.28 版本 v2.2.0 Release Notes[迭代中]
- 1、[迭代中]调度中心升级springboot2.x因此系统要求JDK8+ - 1、[迭代中]调度中心升级springboot2.x因此系统要求JDK8+
- 2、执行器注册默认值优化
### TODO LIST ### TODO LIST

View File

@ -20,11 +20,11 @@ public @interface XxlJob {
/** /**
* init handler, invoked when JobThread init * init handler, invoked when JobThread init
*/ */
String init() default ""; String init();
/** /**
* destroy handler, invoked when JobThread destroy * destroy handler, invoked when JobThread destroy
*/ */
String destroy() default ""; String destroy();
} }