ykluo

导航

分布式任务-XXL-JOB

一、什么是xxl-job?

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

多家公司线上产品线,开箱即用。

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

 

二、XXL-JOB架构

     学习一套框架,核心是学习它的思想,从图中很明显不难看出xxl-job的核心即远程调用。可以发现在调度中心远程调用

执行器的过程,清晰的体现了远程调用的思想,在我们集成这些框架的时候,我们总会在调用端引用服务端暴露出来的接口,

然后通过代理工厂创建代理对象,最终通过spring的自动注入的方式,在我们的容器里面生成代理对象,当我们需要使用的时

候,直接使用代理对象,就可以调用到另一个系统里面的服务了,常规的配置我们都知道,但是真正内部是怎么实现的,为

何我们调用代理对象的方法,就能调用到远程系统的服务,这是我们值得深入思考的。

 

三、XXL-JOB使用

1、调度中心配置

/xxl-job/xxl-job-admin/src/main/resources/application.properties

### 调度中心JDBC链接:
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/xxl_job?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=root_pwd
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
### 报警邮箱
spring.mail.host=smtp.qq.com
spring.mail.port=25
spring.mail.username=xxx@qq.com
spring.mail.password=xxx
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true
spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
### 调度中心通讯TOKEN [选填]:非空时启用;
xxl.job.accessToken=
### 调度中心国际化配置 [必填]: 默认为 "zh_CN"/中文简体, 可选范围为 "zh_CN"/中文简体, "zh_TC"/中文繁体 and "en"/英文;
xxl.job.i18n=zh_CN
## 调度线程池最大线程配置【必填】
xxl.job.triggerpool.fast.max=200
xxl.job.triggerpool.slow.max=100
### 调度中心日志表数据保存天数 [必填]:过期日志自动清理;限制大于等于7时生效,否则, 如-1,关闭自动清理功能;
xxl.job.logretentiondays=30

2、部署项目

调度中心访问地址:http://localhost:8080/xxl-job-admin

 

 

四、集成XXLJob

1、引入相关依赖

<!-- xxl-job核心依赖 -->
<dependency>
    <groupId>com.xuxueli</groupId>
    <artifactId>xxl-job-core</artifactId>
    <version>2.3.0</version>
</dependency>

2、配置相关注册参数

xxl:
  job:
    ### 调度中心部署跟地址 [选填]:如调度中心集群部署存在多个地址则用逗号分隔。执行器将会使用该地址进行"执行器心跳注册"和"任务结果回调";为空则关闭自动注册;
    admin:
      address: http://ken:8080/xxl-job-admin
    ### 执行器通讯TOKEN [选填]:非空时启用;
    accessToken:
    executor:
      ### 执行器AppName [选填]:执行器心跳注册分组依据;为空则关闭自动注册
      appname: my-executor
      ### 执行器注册 [选填]:优先使用该配置作为注册地址,为空时使用内嵌服务 ”IP:PORT“ 作为注册地址。从而更灵活的支持容器类型执行器动态IP和动态映射端口问题。
      address:
      ### 执行器IP [选填]:默认为空表示自动获取IP,多网卡时可手动设置指定IP,该IP不会绑定Host仅作为通讯实用;地址信息用于 "执行器注册" 和 "调度中心请求并触发任务";
      ip:
      ### 执行器端口号 [选填]:小于等于0则自动获取;默认端口为9999,单机部署多个执行器时,注意要配置不同执行器端口;
      port:
      ### 执行器运行日志文件存储磁盘路径 [选填] :需要对该路径拥有读写权限;为空则使用默认路径;
      logpath:
      ### 执行器日志文件保存天数 [选填] : 过期日志自动清理, 限制值大于等于3时生效; 否则, 如-1, 关闭自动清理功能;
      logretentiondays: 30

3、构建配置类以及配置执行器Bean对象

package com.xxl.config;
​
import com.xxl.job.core.executor.XxlJobExecutor;
import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
​
@Configuration
@EnableConfigurationProperties(XxlJobProperties.class)
public class XxlJobConfig {
​
    @Autowired
    private XxlJobProperties xxlJobProperties;
​
    @Bean
    public XxlJobSpringExecutor getXxlJobExecutor(){
        System.out.println("获取配置信息:" + xxlJobProperties);
        XxlJobSpringExecutor executor = new XxlJobSpringExecutor();
        executor.setAdminAddresses(xxlJobProperties.getAdminAddresses());
        executor.setAppname(xxlJobProperties.getAppname());
        executor.setIp(xxlJobProperties.getIp());
        executor.setPort(xxlJobProperties.getPort());
        executor.setAccessToken(xxlJobProperties.getAccessToken());
        executor.setLogPath(xxlJobProperties.getLogPath());
        executor.setLogRetentionDays(xxlJobProperties.getLogRetentionDays());
        return  executor;
    }
}
package com.xxl.config;
import lombok.Data;
import lombok.ToString;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
​
@ConfigurationProperties(prefix = "xxl.job.executor")
@Data
@ToString
public class XxlJobProperties {
    @Value("${xxl.job.admin.address}")
    private String adminAddresses;
    private String accessToken;
    private String appname;
    private String address;
    private String ip;
    private int port;
    private String logPath;
    private int logRetentionDays;
}

4、测试一下

package com.xxl.handler;
​
import com.xxl.job.core.handler.IJobHandler;
import com.xxl.job.core.handler.annotation.XxlJob;
import org.springframework.stereotype.Component;
​
import java.text.SimpleDateFormat;
import java.util.Date;
​
@Component
public class MyJobHandler {
​
    @XxlJob("myJobHandler")
    public void execute() throws Exception {
        System.out.println("HelloWorld!!!!" + new SimpleDateFormat("HH:mm:ss").format(new Date()));
    }
}

 

posted on 2022-08-26 11:51  武汉彭于晏  阅读(105)  评论(0编辑  收藏  举报