Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xxl-job-starter
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wengbinbin
xxl-job-starter
Commits
2e12b525
Commit
2e12b525
authored
Jan 14, 2020
by
wengbinbin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
文档修改
parent
b9f08361
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
24 deletions
+36
-24
README.md
README.md
+36
-24
No files found.
README.md
View file @
2e12b525
官方文档:https://github.com/xuxueli/xxl-job
###
官方文档:https://github.com/xuxueli/xxl-job
如何
使用
### 如何接入
使用
1.
项目中引入jar包
####
1.项目中引入jar包
<dependency>
<groupId>com.ydl</groupId>
<artifactId>xxl-job-spring-boot-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
2.
配置application文件
```
<dependency>
<groupId>com.ydl</groupId>
<artifactId>xxl-job-spring-boot-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
```
#### 2.配置application文件
```
### 调度中心地址,集群可多地址
xxl.job.admin-addresses=http://121.41.92.140:8093/xxl-job-admin,http://121.41.92.140:8094/xxl-job-admin
...
...
@@ -23,30 +26,39 @@
### 类似dubbo的端口,由运维为项目分配
xxl.job.executor-port=9999
```
3.
项目中定时任务改写
####
3.项目中定时任务改写
```
继承IJobHandler接口,execute方法中实现定时逻辑,注解JobHandler中定义value值
示例:
@JobHandler(value = "dispatchDuringTimeHandler")
@Component
@Slf4j
public class DispatchDuringTime extends IJobHandler {
@Resource
private CrmDispatchDataBiz crmDispatchDataBiz;
@Override
public ReturnT
<String>
execute(String param) throws Exception {
crmDispatchDataBiz.currentData();
return SUCCESS;
}
}
@Resource
private CrmDispatchDataBiz crmDispatchDataBiz;
4.
调度中心中添加配置
@Override
public ReturnT<String> execute(String param) throws Exception {
crmDispatchDataBiz.currentData();
return SUCCESS;
}
}
```
#### 4.调度中心中添加配置
每个项目需添加执行管理器
每个项目需添加执行管理器
(每个项目设置一次)
为每个JobHandler设置定时任务
为每个JobHandler设置定时任务代替
@Scheduled(cron = "0 0 3
* *
?")
#### 5.调度中心配置地址(测试)
http://121.41.92.140:8093/xxl-job-admin/
admin
123456
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