SpringBoot 集成xxl-job

一、概述:

XXL-JOB是一个分布式任务调度平台,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线,开箱即用。

官网地址:https://www.xuxueli.com/xxl-job/

二、集成SpringBoot

  1. 引入MAVEN

    复制代码
     		<dependency>
                 <groupId>com.xuxueli</groupId>
                 <artifactId>xxl-job-core</artifactId>
                 <version>${xxl-job-core.version}</version>
             </dependency>
  2. applicaiton.yaml 配置

    xxl:
    job:
    admin:
    addresses: http://192.168.0.22:9080/lq-xxljob-client/
    accessToken:
    executor:
    port: 0
    appname: ${spring.application.name}
    corePoolSize: 5
    maxPoolSize: 20
    threadkeepAliveSeconds: 60
    logPath: logs/lq/job/jobhandler/
    logRetentionDays: 30

  3. XxlJobConfig 配置

    package com.lq.common.config;

    import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;

    @Configuration
    @Slf4j
    public class XxlJobConfig {
    @Value("{xxl.job.admin.addresses}") private String adminAddresses; @Value("{xxl.job.executor.appname}")
    private String appName;
    @Value("{xxl.job.accessToken}") private String accessToken; @Value("{xxl.job.executor.logPath}")
    private String logPath;
    @Value("{xxl.job.executor.logRetentionDays:30}") private int logRetentionDays; // @Value("{xxl.job.executor.ip}")
    // private String ip;
    @Value("${xxl.job.executor.port}")
    private int port;

    复制代码
     @Bean(initMethod = "start", destroyMethod = "destroy")
     public XxlJobSpringExecutor xxlJobExecutor() {
         log.info(">>>>>>>>>>> xxl-job config init.");
         XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
         xxlJobSpringExecutor.setAdminAddresses(adminAddresses);
         xxlJobSpringExecutor.setAppname(appName);
         //        xxlJobSpringExecutor.setIp(ip);
         xxlJobSpringExecutor.setPort(port);
         xxlJobSpringExecutor.setAccessToken(accessToken);
         xxlJobSpringExecutor.setLogPath(logPath);
         xxlJobSpringExecutor.setLogRetentionDays(logRetentionDays);
    
         return xxlJobSpringExecutor;
     }

    }

常见问题:

在使用XXL-JOB时,出现ERROR com.xxl.job.core.util.XxlJobRemotingUtil:143 - Read timed out错误通常表示在客户端与服务器端进行通信时,读操作超时。XXL-JOB是一个分布式任务调度平台,该错误可能由以下几个原因导致:

网络问题:XXL-JOB客户端与服务端之间的网络连接不稳定或延迟过高,导致在指定的超时时间内无法完成数据读取。

解决方案:检查并确保客户端与服务端之间的网络连通性良好,减少网络延迟和丢包率,必要时可适当增加通信超时时间。

服务端响应过慢:XXL-JOB服务端处理请求的速度太慢,未能在设置的Socket读取超时时间内返回结果。

解决方案:优化服务端性能,排查是否存在阻塞、资源耗尽等情况,确保服务端能够快速响应客户端请求。

配置不合理:XXL-JOB客户端或服务端的相关配置(如超时时间)设置得过小,不足以应对正常业务场景下的响应时间。

解决方案:调整相关超时配置参数,使其适应实际的业务需求和网络环境。

请根据实际情况,针对性地进行排查和解决。同时,关注XXL-JOB服务端日志以获取更详细的错误信息,这对于定位问题源头非常有帮助

解决方法:

yaml 里添加配置

复制代码
 corePoolSize: 5
 maxPoolSize: 20
 threadkeepAliveSeconds: 60
相关推荐
Flynt1 小时前
把公司项目迁到 Spring Boot 4.0:编译通过只是开始
java·spring boot·后端
Tangyuewei1 小时前
给老 Spring 项目装个 AI Agent
java·人工智能·spring
她的男孩2 小时前
多租户和数据权限怎么共存?扒完拦截器注册链路,我找到 4 个隐蔽的坑
java·后端·架构
小溪学编程2 小时前
Java BufferedReader 详解:从基础用法到性能优化
java·python·性能优化
HZero.chen2 小时前
Java 匿名类简介
java·匿名类
用户3126874877202 小时前
Java 泛型擦除到底擦掉了什么?类型安全与桥接方法深度拆解
java
暖焰核心2 小时前
继承全解——继承、默认成员函数、切片、隐藏与虚继承
java·前端·javascript
君顾13 小时前
外卖CPS系统开发实战指南:从架构设计到部署全流程解析
java·开发语言·外卖
奇牙coding1233 小时前
GPT-5.5 升级 GPT-5.6 接入指南:流式调用配置与常见问题
java·网络·gpt·ai
老刘的望远镜3 小时前
AgentScope Java 从零(03):Agent 的记性默认全开,我在第 50 轮翻了车
java·开发语言·javascript