You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
Java
70 lines
1.9 KiB
Java
package com.docus.server;
|
|
import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* @ProjectName:
|
|
* @Description:
|
|
* @Param 传输参数
|
|
* @Return
|
|
* @Author: 曾文和
|
|
* @CreateDate: 2021/5/7 16:23
|
|
* @UpdateUser: 曾文和
|
|
* @UpdateDate: 2021/5/7 16:23
|
|
* @UpdateRemark: 更新说明
|
|
* @Version: 1.0
|
|
*/
|
|
|
|
|
|
|
|
@Configuration
|
|
public class XxlJobConfig {
|
|
private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class);
|
|
|
|
@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
|
|
public XxlJobSpringExecutor xxlJobExecutor() {
|
|
logger.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;
|
|
}
|
|
|
|
}
|