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
2de8691f
authored
Dec 12, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
update document
parent
1fbb9759
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
doc/XXL-JOB官方文档.md
doc/XXL-JOB官方文档.md
View file @
2de8691f
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
@@ -1665,20 +1665,20 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -1665,20 +1665,20 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 24、任务列表交互优化,支持查看任务所属执行器的注册节点;
- 24、任务列表交互优化,支持查看任务所属执行器的注册节点;
- 25、项目依赖升级至较新稳定版本,如spring、spring-boot、mybatis、slf4j、groovy等等;
- 25、项目依赖升级至较新稳定版本,如spring、spring-boot、mybatis、slf4j、groovy等等;
### 6.27 版本 v2.1.2 Release Notes[
迭代中
]
### 6.27 版本 v2.1.2 Release Notes[
2019-12-12
]
- 1、方法任务支持:由原来基于JobHandler类任务开发方式,优化为支持基于方法的任务开发方式;因此,可以支持单个类中开发多个任务方法,进行类复用
(TODO:JobHandler移除);
- 1、方法任务支持:由原来基于JobHandler类任务开发方式,优化为支持基于方法的任务开发方式;因此,可以支持单个类中开发多个任务方法,进行类复用
```
```
@XxlJob("demoJobHandler
2
")
@XxlJob("demoJobHandler")
public ReturnT
<String>
execute(String param) {
public ReturnT
<String>
execute(String param) {
XxlJobLogger.log("hello world");
XxlJobLogger.log("hello world");
return ReturnT.SUCCESS;
return ReturnT.SUCCESS;
}
}
```
```
-
2、移除commons-exec,采用原生方式实现;
-
2、移除commons-exec
依赖
,采用原生方式实现;
-
3、执行器回调乱码问题修复;
-
3、执行器回调乱码问题修复;
-
4、调度中心dispatcher servlet加载顺序优化;
-
4、调度中心dispatcher servlet加载顺序优化;
-
5、执行器回调地址https兼容支持;
-
5、执行器回调地址https兼容支持;
注意:最新版本 "XxlJobSpringExecutor" 逻辑有调整,历史项目中该组件的配置方式请参考Sample示例项目进行调整,尤其注意需要移除组件的init和destroy方法;
### TODO LIST
### TODO LIST
...
...
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