xxljob集成在springcloud项目中,详细操作,需要细节的解释,并且集成xxljob_admin
时间: 2023-10-25 14:29:17 浏览: 84
将 xxl-job-admin、xxl-job-core、xxl-job-executor 的源码引入项目中.docx
4星 · 用户满意度95%
好的,下面是集成xxljob的详细操作,包括xxljob_admin的集成:
1. 引入xxljob依赖
在Spring Cloud项目的pom.xml文件中,加入xxl-job-core依赖:
```xml
<dependency>
<groupId>com.xxl-job</groupId>
<artifactId>xxl-job-core</artifactId>
<version>${xxl.job.version}</version>
</dependency>
```
其中${xxl.job.version}需要替换为最新的xxl-job-core版本号。
2. 配置xxljob
在Spring Cloud项目的application.yml或application.properties文件中,添加xxljob的配置信息:
```yaml
xxl:
job:
admin:
addresses: http://xxljob-admin:8080/xxl-job-admin
executor:
appname: your_app_name
address: http://localhost:9999/xxl-job-executor
ip:
port: 9999
logpath: /data/applogs/xxl-job/jobhandler
logretentiondays: 7
```
其中,admin.addresses配置xxljob_admin的地址,executor.appname是你的应用名,executor.address是xxl-job executor的地址,logpath是xxl-job executor的日志路径。
3. 配置xxljob_admin
下载xxl-job-admin的war包,部署到Tomcat或其他Web容器中,并配置xxljob_admin的数据库信息:
```yaml
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/xxl_job?characterEncoding=UTF-8&useSSL=false
username: root
password: 123456
```
其中,url需要替换为你的数据库连接地址,username和password需要替换为你的数据库用户名和密码。
4. 启动xxljob_admin
在Web容器中启动xxl-job-admin,访问http://localhost:8080/xxl-job-admin,使用默认用户名和密码登录。
5. 编写任务代码
在Spring Cloud项目中,编写任务代码,例如:
```java
@XxlJob("testJobHandler")
public ReturnT<String> testJobHandler(String param) throws Exception {
XxlJobLogger.log("testJobHandler start");
// your code
XxlJobLogger.log("testJobHandler end");
return ReturnT.SUCCESS;
}
```
其中,@XxlJob注解中的参数是任务名,testJobHandler是任务处理器的方法名。
6. 启动xxl-job executor
在Spring Cloud项目中启动xxl-job executor,访问http://localhost:9999/xxl-job-admin,可以看到已经添加的任务。
以上就是将xxl-job集成到Spring Cloud项目中的详细操作。
阅读全文