|
@@ -1,91 +1,91 @@
|
|
|
-package com.gyee.generation.config;
|
|
|
-
|
|
|
-
|
|
|
-import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
-import org.springframework.context.EnvironmentAware;
|
|
|
-import org.springframework.context.annotation.Bean;
|
|
|
-import org.springframework.context.annotation.Configuration;
|
|
|
-import org.springframework.context.annotation.PropertySource;
|
|
|
-import org.springframework.core.env.Environment;
|
|
|
-
|
|
|
-/**
|
|
|
- * xxl-job config
|
|
|
- *
|
|
|
- * @author xuxueli 2017-04-28
|
|
|
- */
|
|
|
-
|
|
|
-
|
|
|
-@Configuration
|
|
|
-//@PropertySource("classpath:xxl-job-executor.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executor2.properties")
|
|
|
-@PropertySource("classpath:xxl-job-executor3.properties")
|
|
|
-////@PropertySource("classpath:xxl-job-executor4.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executor5.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorWPLY.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorRG.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorJN.properties")
|
|
|
+//package com.gyee.generation.config;
|
|
|
//
|
|
|
-//@PropertySource("classpath:xxl-job-accuracy.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-7001.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-7002.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-7003.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF000.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF001.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF002.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF003.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF004.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF005.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF006.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF007.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorGF008.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-region.properties")
|
|
|
-public class XxlJobConfig implements EnvironmentAware {
|
|
|
-
|
|
|
- private Environment env;
|
|
|
-
|
|
|
-
|
|
|
- @Override
|
|
|
- public void setEnvironment(Environment environment) {
|
|
|
- this.env = environment;
|
|
|
- }
|
|
|
-
|
|
|
- private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class);
|
|
|
-
|
|
|
-
|
|
|
- @Bean
|
|
|
- public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
- logger.info(">>>>>>>>>>> xxl-job config init.");
|
|
|
- XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
|
|
- xxlJobSpringExecutor.setAdminAddresses(env.getProperty("xxl.job.admin.addresses"));
|
|
|
- xxlJobSpringExecutor.setAppname(env.getProperty("xxl.job.executor.appname"));
|
|
|
- xxlJobSpringExecutor.setAddress(env.getProperty("xxl.job.executor.address"));
|
|
|
- xxlJobSpringExecutor.setIp(env.getProperty("xxl.job.executor.ip"));
|
|
|
- xxlJobSpringExecutor.setPort(Integer.parseInt(env.getProperty("xxl.job.executor.port")));
|
|
|
- xxlJobSpringExecutor.setAccessToken(env.getProperty("xxl.job.accessToken"));
|
|
|
- xxlJobSpringExecutor.setLogPath(env.getProperty("xxl.job.executor.logpath"));
|
|
|
- xxlJobSpringExecutor.setLogRetentionDays(Integer.parseInt(env.getProperty("xxl.job.executor.logretentiondays")));
|
|
|
- return xxlJobSpringExecutor;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 针对多网卡、容器内部署等情况,可借助 "spring-cloud-commons" 提供的 "InetUtils" 组件灵活定制注册IP;
|
|
|
- *
|
|
|
- * 1、引入依赖:
|
|
|
- * <dependency>
|
|
|
- * <groupId>org.springframework.cloud</groupId>
|
|
|
- * <artifactId>spring-cloud-commons</artifactId>
|
|
|
- * <version>${version}</version>
|
|
|
- * </dependency>
|
|
|
- *
|
|
|
- * 2、配置文件,或者容器启动变量
|
|
|
- * spring.cloud.inetutils.preferred-networks: 'xxx.xxx.xxx.'
|
|
|
- *
|
|
|
- * 3、获取IP
|
|
|
- * String ip_ = inetUtils.findFirstNonLoopbackHostInfo().getIpAddress();
|
|
|
- */
|
|
|
-
|
|
|
-
|
|
|
-}
|
|
|
+//
|
|
|
+//import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
|
|
+//import org.slf4j.Logger;
|
|
|
+//import org.slf4j.LoggerFactory;
|
|
|
+//import org.springframework.context.EnvironmentAware;
|
|
|
+//import org.springframework.context.annotation.Bean;
|
|
|
+//import org.springframework.context.annotation.Configuration;
|
|
|
+//import org.springframework.context.annotation.PropertySource;
|
|
|
+//import org.springframework.core.env.Environment;
|
|
|
+//
|
|
|
+///**
|
|
|
+// * xxl-job config
|
|
|
+// *
|
|
|
+// * @author xuxueli 2017-04-28
|
|
|
+// */
|
|
|
+//
|
|
|
+//
|
|
|
+//@Configuration
|
|
|
+////@PropertySource("classpath:xxl-job-executor.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executor2.properties")
|
|
|
+//@PropertySource("classpath:xxl-job-executor3.properties")
|
|
|
+//////@PropertySource("classpath:xxl-job-executor4.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executor5.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorWPLY.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorRG.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorJN.properties")
|
|
|
+////
|
|
|
+////@PropertySource("classpath:xxl-job-accuracy.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-7001.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-7002.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-7003.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF000.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF001.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF002.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF003.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF004.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF005.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF006.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF007.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-executorGF008.properties")
|
|
|
+////@PropertySource("classpath:xxl-job-region.properties")
|
|
|
+//public class XxlJobConfig implements EnvironmentAware {
|
|
|
+//
|
|
|
+// private Environment env;
|
|
|
+//
|
|
|
+//
|
|
|
+// @Override
|
|
|
+// public void setEnvironment(Environment environment) {
|
|
|
+// this.env = environment;
|
|
|
+// }
|
|
|
+//
|
|
|
+// private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class);
|
|
|
+//
|
|
|
+//
|
|
|
+// @Bean
|
|
|
+// public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
+// logger.info(">>>>>>>>>>> xxl-job config init.");
|
|
|
+// XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
|
|
+// xxlJobSpringExecutor.setAdminAddresses(env.getProperty("xxl.job.admin.addresses"));
|
|
|
+// xxlJobSpringExecutor.setAppname(env.getProperty("xxl.job.executor.appname"));
|
|
|
+// xxlJobSpringExecutor.setAddress(env.getProperty("xxl.job.executor.address"));
|
|
|
+// xxlJobSpringExecutor.setIp(env.getProperty("xxl.job.executor.ip"));
|
|
|
+// xxlJobSpringExecutor.setPort(Integer.parseInt(env.getProperty("xxl.job.executor.port")));
|
|
|
+// xxlJobSpringExecutor.setAccessToken(env.getProperty("xxl.job.accessToken"));
|
|
|
+// xxlJobSpringExecutor.setLogPath(env.getProperty("xxl.job.executor.logpath"));
|
|
|
+// xxlJobSpringExecutor.setLogRetentionDays(Integer.parseInt(env.getProperty("xxl.job.executor.logretentiondays")));
|
|
|
+// return xxlJobSpringExecutor;
|
|
|
+// }
|
|
|
+//
|
|
|
+//
|
|
|
+// /**
|
|
|
+// * 针对多网卡、容器内部署等情况,可借助 "spring-cloud-commons" 提供的 "InetUtils" 组件灵活定制注册IP;
|
|
|
+// *
|
|
|
+// * 1、引入依赖:
|
|
|
+// * <dependency>
|
|
|
+// * <groupId>org.springframework.cloud</groupId>
|
|
|
+// * <artifactId>spring-cloud-commons</artifactId>
|
|
|
+// * <version>${version}</version>
|
|
|
+// * </dependency>
|
|
|
+// *
|
|
|
+// * 2、配置文件,或者容器启动变量
|
|
|
+// * spring.cloud.inetutils.preferred-networks: 'xxx.xxx.xxx.'
|
|
|
+// *
|
|
|
+// * 3、获取IP
|
|
|
+// * String ip_ = inetUtils.findFirstNonLoopbackHostInfo().getIpAddress();
|
|
|
+// */
|
|
|
+//
|
|
|
+//
|
|
|
+//}
|