springboot如何使用xxljob
时间: 2024-01-31 16:02:20 浏览: 90
xxl-job-springboot:将xxl-job修改为springboot版本 本地测试直接启动就可以了。不再需要手动部署tomcat
在Spring Boot中使用xxl-job可以分为以下几个步骤:
1. 引入xxl-job的依赖:在pom.xml文件中添加xxl-job的依赖。
2. 配置xxl-job的参数:在application.properties或application.yml中配置xxl-job的参数,例如执行器名称、执行器端口、注册中心地址等。
3. 配置JobHandler:在Spring Boot的配置类中,配置JobHandler,用于执行具体的定时任务。这里需要实现IJobHandler接口,并实现execute方法,用于编写具体的任务逻辑。
4. 配置Web管理界面:在Spring Boot的application.properties或application.yml中,配置xxl-job-admin的地址和端口。
下面是一个示例代码:
1. 引入xxl-job的依赖:
```
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<version>${xxl.job.version}</version>
</dependency>
```
2. 配置xxl-job的参数:
```
xxl.job.executor.appname=xxl-job-executor-sample
xxl.job.executor.address=localhost:9999
xxl.job.executor.ip=
xxl.job.executor.port=9999
xxl.job.accessToken=
xxl.job.executor.logpath=/data/applogs/xxl-job/jobhandler
xxl.job.executor.logretentiondays=30
xxl.job.admin.addresses=http://localhost:8080/xxl-job-admin
```
3. 配置JobHandler:
```
@Component
public class MyJobHandler extends IJobHandler {
@Override
public ReturnT<String> execute(String param) throws Exception {
XxlJobLogger.log("XXL-JOB, Hello World.");
return ReturnT.SUCCESS;
}
}
```
4. 配置Web管理界面:
```
xxl.job.admin.addresses=http://localhost:8080/xxl-job-admin
```
阅读全文