|
|
@@ -0,0 +1,59 @@
|
|
|
+package com.sckw.xxljob.config;
|
|
|
+
|
|
|
+import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
|
|
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @desc: xxl-job自动装配
|
|
|
+ * @author: yzc
|
|
|
+ * @date: 2023-06-15 9:29
|
|
|
+ */
|
|
|
+@EnableConfigurationProperties
|
|
|
+@Slf4j
|
|
|
+public class XxlJobAutoConfiguration {
|
|
|
+
|
|
|
+ @Value("${xxl.job.admin.addresses}")
|
|
|
+ private String adminAddresses;
|
|
|
+
|
|
|
+ @Value("${xxl.job.accessToken:}")
|
|
|
+ private String accessToken;
|
|
|
+
|
|
|
+ @Value("${xxl.job.executor.appname}")
|
|
|
+ private String appName;
|
|
|
+
|
|
|
+ @Value("${xxl.job.executor.address:}")
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ @Value("${xxl.job.executor.ip:}")
|
|
|
+ private String ip;
|
|
|
+
|
|
|
+ @Value("${xxl.job.executor.port}")
|
|
|
+ private int port;
|
|
|
+
|
|
|
+ @Value("${xxl.job.executor.logpath}")
|
|
|
+ private String logPath;
|
|
|
+
|
|
|
+ @Value("${xxl.job.executor.logretentiondays}")
|
|
|
+ private int logRetentionDays;
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ @ConditionalOnMissingBean(XxlJobSpringExecutor.class)
|
|
|
+ public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
+ log.info(">>>>>>>>>> xxl-job config init start <<<<<<<<<<");
|
|
|
+ XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
|
|
+ xxlJobSpringExecutor.setAdminAddresses(adminAddresses);
|
|
|
+ xxlJobSpringExecutor.setAppname(appName);
|
|
|
+ xxlJobSpringExecutor.setAddress(address);
|
|
|
+ xxlJobSpringExecutor.setIp(ip);
|
|
|
+ xxlJobSpringExecutor.setPort(port);
|
|
|
+ xxlJobSpringExecutor.setAccessToken(accessToken);
|
|
|
+ xxlJobSpringExecutor.setLogPath(logPath);
|
|
|
+ xxlJobSpringExecutor.setLogRetentionDays(logRetentionDays);
|
|
|
+ return xxlJobSpringExecutor;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|