| |
| |
| |
| |
| |
| package com.example.democlient.taskhandler; |
| |
| import com.xxl.job.core.handler.annotation.XxlJob; |
| import org.springframework.stereotype.Component; |
| |
| |
| |
| |
| |
| |
| @Component |
| public class DemoTaskHandler { |
| |
| @XxlJob("demoTaskHandler") |
| public void execute() throws Exception { |
| try { |
| System.out.println("democlient开始执行demoTask..."); |
| } catch (Exception e) { |
| e.printStackTrace(); |
| } |
| } |
| } |
| |
| |
| |
| |
| |
| package com.example.democlient.taskhandler; |
| |
| 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; |
| |
| |
| |
| |
| |
| |
| @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); |
| logger.info("adminAddresses:{}",adminAddresses); |
| xxlJobSpringExecutor.setAppname(appname); |
| xxlJobSpringExecutor.setAddress(address); |
| xxlJobSpringExecutor.setIp(ip); |
| xxlJobSpringExecutor.setPort(port); |
| xxlJobSpringExecutor.setAccessToken(accessToken); |
| xxlJobSpringExecutor.setLogPath(logPath); |
| xxlJobSpringExecutor.setLogRetentionDays(logRetentionDays); |
| return xxlJobSpringExecutor; |
| } |
| |
| } |
| # web port |
| ### xxl-job admin address list, such as "http://address" or "http://address01,http://address02" |
| #填写你自己的xxl-job-admin项目 |
| xxl.job.admin.addresses=http: |
| |
| ### xxl-job, access token |
| xxl.job.accessToken= |
| |
| ### xxl-job executor appname |
| #与新增的执行器名称一致 |
| xxl.job.executor.appname=xxl-job-executor-sample |
| ### xxl-job executor registry-address: default use address to registry , otherwise use ip:port if address is null |
| xxl.job.executor.address= |
| ### xxl-job executor server-info |
| #我写的内网地址 |
| xxl.job.executor.ip=192.168.212.123 |
| xxl.job.executor.port=9999 |
| ### xxl-job executor log-path |
| xxl.job.executor.logpath=E:\\gluesource |
| ### xxl-job executor log-retention-days |
| #日志保留天数 |
| xxl.job.executor.logretentiondays=30 |