|
|
|
@ -1,8 +1,6 @@
|
|
|
|
|
package com.supervision.config;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
@ -14,7 +12,6 @@ import org.springframework.context.annotation.Configuration;
|
|
|
|
|
*/
|
|
|
|
|
@Configuration
|
|
|
|
|
public class XxlJobConfig {
|
|
|
|
|
private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class);
|
|
|
|
|
|
|
|
|
|
@Value("${xxl.job.admin.addresses}")
|
|
|
|
|
private String adminAddresses;
|
|
|
|
@ -43,7 +40,6 @@ public class XxlJobConfig {
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
|
|
logger.info(">>>>>>>>>>> xxl-job config init.");
|
|
|
|
|
XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
|
|
|
|
xxlJobSpringExecutor.setAdminAddresses(adminAddresses);
|
|
|
|
|
xxlJobSpringExecutor.setAppname(appname);
|
|
|
|
@ -53,7 +49,6 @@ public class XxlJobConfig {
|
|
|
|
|
xxlJobSpringExecutor.setAccessToken(accessToken);
|
|
|
|
|
xxlJobSpringExecutor.setLogPath(logPath);
|
|
|
|
|
xxlJobSpringExecutor.setLogRetentionDays(logRetentionDays);
|
|
|
|
|
|
|
|
|
|
return xxlJobSpringExecutor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|