Commit 421367f3 by wengbinbin

Update README.md

parent e2882f7b
官方文档:https://github.com/xuxueli/xxl-job
如何使用
1.项目中引入jar包
<dependency>
......@@ -6,6 +7,7 @@
<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
......@@ -13,6 +15,7 @@
xxl.job.executor-appName=work-order
### 类似dubbo的端口,由运维为项目分配
xxl.job.executor-port=9999
3.项目中定时任务改写
继承IJobHandler接口,execute方法中实现定时逻辑,注解JobHandler中定义value值
示例:
......@@ -30,6 +33,7 @@
return SUCCESS;
}
}
4.调度中心中添加配置
每个项目需添加执行管理器
为每个JobHandler设置定时任务
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment