|
@@ -19,7 +19,7 @@ import org.springframework.core.env.Environment;
|
|
|
|
|
|
@Configuration
|
|
|
@PropertySource("classpath:xxl-job-executor.properties")
|
|
|
-//@PropertySource("classpath:xxl-job-executorWPLY.properties")
|
|
|
+//@PropertySource("classpath:xxl-job-executorWPXNY.properties")
|
|
|
//@PropertySource("classpath:xxl-job-executorRG.properties")
|
|
|
public class XxlJobConfig implements EnvironmentAware {
|
|
|
private Environment env;
|
|
@@ -36,35 +36,35 @@ public class XxlJobConfig implements EnvironmentAware {
|
|
|
|
|
|
@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;
|
|
|
+ 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();
|
|
|
- */
|
|
|
+ * 针对多网卡、容器内部署等情况,可借助 "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();
|
|
|
+ */
|
|
|
|
|
|
|
|
|
}
|