SpringBoot 集成XxlJob定时任务使用过程

POM文件


com.xuxueli
xxl-job-core
2.2.0

properties文件

###xxl-job executor log-path
xxl.job.executor.logpath=/home/container/logs/xxl-job-logs/
### xxl-job admin address list, such as "http://address or "http://address0l,http://address02'
xxl.job.admin.addresses-http://192.168.1.183:18080/
xxl-job-adminxxl.job.executor.appname-data-job-statistics-executorxxl.job.executor.port=19089

XXLJOB的任务类

SpringBoot 集成XxlJob定时任务使用过程_第1张图片

 控制台配置

1、创建执行器,如果是自动注册 就不需要手动填写地址

SpringBoot 集成XxlJob定时任务使用过程_第2张图片

 2、定时任务调度的任务创建

SpringBoot 集成XxlJob定时任务使用过程_第3张图片

 3、执行一次

SpringBoot 集成XxlJob定时任务使用过程_第4张图片

 4、查看日志

SpringBoot 集成XxlJob定时任务使用过程_第5张图片

 SpringBoot 集成XxlJob定时任务使用过程_第6张图片

到这里就说明定时任务调度成功!完结,撒花~~~~~~

你可能感兴趣的:(spring,boot,java)