|
@@ -9,46 +9,46 @@ import org.springframework.context.annotation.Configuration;
|
|
|
/**
|
|
|
* @Description: xxlJob配置
|
|
|
*/
|
|
|
-//@Configuration
|
|
|
+@Configuration
|
|
|
@Slf4j
|
|
|
public class XxlJobConfig {
|
|
|
|
|
|
-// @Value("${xxl.job.admin.addresses}")
|
|
|
-// private String adminAddresses;
|
|
|
-//
|
|
|
-// @Value("${xxl.job.admin.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
|
|
|
-// public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
-// log.info(">>>>>>>>>>> xxl-job config init.");
|
|
|
-// 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;
|
|
|
-// }
|
|
|
+ @Value("${xxl.job.admin.addresses}")
|
|
|
+ private String adminAddresses;
|
|
|
+
|
|
|
+ @Value("${xxl.job.admin.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
|
|
|
+ public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
+ log.info(">>>>>>>>>>> xxl-job config init.");
|
|
|
+ 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;
|
|
|
+ }
|
|
|
}
|