mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-08 05:17:42 +00:00
update 优化 ruoyi-common-job 支持通过调度中心服务名注册 xxl-job-admin
This commit is contained in:
@@ -16,7 +16,9 @@ xxl:
|
|||||||
# 执行器开关
|
# 执行器开关
|
||||||
enabled: true
|
enabled: true
|
||||||
# 调度中心地址:如调度中心集群部署存在多个地址则用逗号分隔。
|
# 调度中心地址:如调度中心集群部署存在多个地址则用逗号分隔。
|
||||||
admin-addresses: http://localhost:9900
|
# admin-addresses: http://localhost:9900
|
||||||
|
# 调度中心应用名 通过服务名连接调度中心(启用admin-appname会导致admin-addresses不生效)
|
||||||
|
admin-appname: ruoyi-xxl-job-admin
|
||||||
# 执行器通讯TOKEN:非空时启用
|
# 执行器通讯TOKEN:非空时启用
|
||||||
access-token: xxl-job
|
access-token: xxl-job
|
||||||
# 执行器配置
|
# 执行器配置
|
||||||
|
@@ -22,6 +22,12 @@
|
|||||||
<artifactId>spring-boot-autoconfigure</artifactId>
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 服务发现组件 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-commons</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- xxl-job-core -->
|
<!-- xxl-job-core -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.xuxueli</groupId>
|
<groupId>com.xuxueli</groupId>
|
||||||
@@ -33,6 +39,10 @@
|
|||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.ruoyi</groupId>
|
||||||
|
<artifactId>ruoyi-common-core</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
@@ -1,14 +1,21 @@
|
|||||||
package com.ruoyi.common.job.config;
|
package com.ruoyi.common.job.config;
|
||||||
|
|
||||||
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
import com.ruoyi.common.core.utils.StreamUtils;
|
||||||
import com.ruoyi.common.job.config.properties.XxlJobProperties;
|
import com.ruoyi.common.job.config.properties.XxlJobProperties;
|
||||||
import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
|
import org.springframework.cloud.client.ServiceInstance;
|
||||||
|
import org.springframework.cloud.client.discovery.DiscoveryClient;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* xxl-job config
|
* xxl-job config
|
||||||
*
|
*
|
||||||
@@ -23,11 +30,23 @@ public class XxlJobConfig {
|
|||||||
|
|
||||||
private final XxlJobProperties xxlJobProperties;
|
private final XxlJobProperties xxlJobProperties;
|
||||||
|
|
||||||
|
private final DiscoveryClient discoveryClient;
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public XxlJobSpringExecutor xxlJobExecutor() {
|
public XxlJobSpringExecutor xxlJobExecutor() {
|
||||||
log.info(">>>>>>>>>>> xxl-job config init.");
|
log.info(">>>>>>>>>>> xxl-job config init.");
|
||||||
XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
||||||
xxlJobSpringExecutor.setAdminAddresses(xxlJobProperties.getAdminAddresses());
|
if (StringUtils.isNotBlank(xxlJobProperties.getAdminAppname())) {
|
||||||
|
List<ServiceInstance> instances = discoveryClient.getInstances(xxlJobProperties.getAdminAppname());
|
||||||
|
if (CollUtil.isEmpty(instances)) {
|
||||||
|
throw new RuntimeException("调度中心不存在!");
|
||||||
|
}
|
||||||
|
String serverList = StreamUtils.join(instances, instance ->
|
||||||
|
String.format("http://%s:%s", instance.getHost(), instance.getPort()));
|
||||||
|
xxlJobSpringExecutor.setAdminAddresses(serverList);
|
||||||
|
} else {
|
||||||
|
xxlJobSpringExecutor.setAdminAddresses(xxlJobProperties.getAdminAddresses());
|
||||||
|
}
|
||||||
xxlJobSpringExecutor.setAccessToken(xxlJobProperties.getAccessToken());
|
xxlJobSpringExecutor.setAccessToken(xxlJobProperties.getAccessToken());
|
||||||
XxlJobProperties.Executor executor = xxlJobProperties.getExecutor();
|
XxlJobProperties.Executor executor = xxlJobProperties.getExecutor();
|
||||||
xxlJobSpringExecutor.setAppname(executor.getAppname());
|
xxlJobSpringExecutor.setAppname(executor.getAppname());
|
||||||
|
@@ -17,6 +17,8 @@ public class XxlJobProperties {
|
|||||||
|
|
||||||
private String adminAddresses;
|
private String adminAddresses;
|
||||||
|
|
||||||
|
private String adminAppname;
|
||||||
|
|
||||||
private String accessToken;
|
private String accessToken;
|
||||||
|
|
||||||
private Executor executor;
|
private Executor executor;
|
||||||
|
Reference in New Issue
Block a user