当前位置: 首页 > news >正文 网站建设课程内容chinacd wordpress99 news 2025/11/1 18:44:05 网站建设课程内容,chinacd wordpress99,做织梦网站时图片路径显示错误,北京同仁医院眼科医生免费咨询SrpingBoot整合xxl-job#xff0c;实现任务调度说明调度中心执行器调试整合SpringBoot说明 Xxl-Job是一个轻量级分布式任务调度平台#xff0c;其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线#xff0c;开箱即用。Xxl-Job有… SrpingBoot整合xxl-job实现任务调度说明调度中心执行器调试整合SpringBoot说明 Xxl-Job是一个轻量级分布式任务调度平台其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码并接入多家公司线上产品线开箱即用。Xxl-Job有两个核心一个调度中心一个执行器需要同时部署才行。 调度中心 1、进入官网地址gitee复制连接拉取程序。 2、IDEA工具导入项目setttings配置可用maven 3、项目结构的doc/db/tables_xxl_job.sql文件运行到MySql创建数据库和表。 4、修改xxl-job-admin调度中心里面配置文件。这里不是邮箱的登录密码是邮箱的授权码首页设置账号下申请spring.mail.password POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务授权码 5、启动xxl-job-admin项目访问http://localhost:8080/xxl-job-admin用户名admin密码123456调度中心部署完成。 执行器 1、创建测试类 Test.java启动项目 import com.xxl.job.core.biz.model.ReturnT; import com.xxl.job.core.handler.annotation.XxlJob; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component;import java.util.Date;Component public class Test {private static Logger logger LoggerFactory.getLogger(Test.class);/*** 1、简单任务示例Bean模式*/XxlJob(testJobHandler)public ReturnTString demoJobHandler(String param) throws Exception {System.out.println(new Date() Test Xxl-Job~);return ReturnT.SUCCESS;} }2、配置说明 # 服务端口 server.port8081# 日志配置 logging.configclasspath:logback.xml# 调度中心部署跟地址 [选填]如调度中心集群部署存在多个地址则用逗号分隔。 # 执行器将会使用该地址进行执行器心跳注册和任务结果回调 xxl.job.admin.addresseshttp://127.0.0.1:8080/xxl-job-admin# xxl-job授权需与调度中心一致默认default_token xxl.job.accessTokendefault_token# xxl-job注册到调度中心名称 xxl.job.executor.appnamexxl-job-executor-sample# 执行器注册 [选填]优先使用该配置作为注册地址为空时使用内嵌服务 ”IP:PORT“ 作为注册地址。 # 从而更灵活的支持容器类型执行器动态IP和动态映射端口问题。 xxl.job.executor.address# 执行器IP [选填]默认为空表示自动获取IP多网卡时可手动设置指定IP该IP不会绑定Host仅作为通讯实用 # 地址信息用于 执行器注册 和 调度中心请求并触发任务 xxl.job.executor.ip# 执行器端口号 [选填]小于等于0则自动获取默认端口为9999单机部署多个执行器时注意要配置不同执行器端口 xxl.job.executor.port9999 # xxl-job 日志文件路径 xxl.job.executor.logpathD:/xxlJob ### xxl-job 日志保存日期 xxl.job.executor.logretentiondays30调试 一、自动注册上执行器信息。 二、任务管理新增任务、保存。 三、控制台看代码语句输出任务调度成功。如果无打印检查报错或者邮箱推送信息排查。 整合SpringBoot 1、maven项目pom.xml添加 dependencygroupIdcom.xuxueli/groupIdartifactIdxxl-job-core/artifactIdversion2.4.0/version/dependency2、拷贝XxlJobConfig到新建项目使用 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;/*** xxl-job config**/ 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;Beanpublic XxlJobSpringExecutor xxlJobExecutor() {logger.info( xxl-job config init.);XxlJobSpringExecutor xxlJobSpringExecutor new XxlJobSpringExecutor();xxlJobSpringExecutor.setAdminAddresses(adminAddresses);xxlJobSpringExecutor.setAppname(appname);xxlJobSpringExecutor.setAddress(address);xxlJobSpringExecutor.setIp(ip);xxlJobSpringExecutor.setPort(port);xxlJobSpringExecutor.setAccessToken(accessToken);xxlJobSpringExecutor.setLogPath(logPath);xxlJobSpringExecutor.setLogRetentionDays(logRetentionDays);return xxlJobSpringExecutor;} }3、主要学习XxlJob()注解的使用即可 到此结束感谢浏览到最后有问题可用留言交流 文章转载自: http://www.morning.kxbry.cn.gov.cn.kxbry.cn http://www.morning.yzfrh.cn.gov.cn.yzfrh.cn http://www.morning.gjssk.cn.gov.cn.gjssk.cn http://www.morning.jggr.cn.gov.cn.jggr.cn http://www.morning.hffjj.cn.gov.cn.hffjj.cn http://www.morning.wflsk.cn.gov.cn.wflsk.cn http://www.morning.fssmx.com.gov.cn.fssmx.com http://www.morning.lnbyk.cn.gov.cn.lnbyk.cn http://www.morning.tnthd.cn.gov.cn.tnthd.cn http://www.morning.tphrx.cn.gov.cn.tphrx.cn http://www.morning.qnypp.cn.gov.cn.qnypp.cn http://www.morning.fgsct.cn.gov.cn.fgsct.cn http://www.morning.qieistand.com.gov.cn.qieistand.com http://www.morning.srbmc.cn.gov.cn.srbmc.cn http://www.morning.51meihou.cn.gov.cn.51meihou.cn http://www.morning.rbhcx.cn.gov.cn.rbhcx.cn http://www.morning.bnlch.cn.gov.cn.bnlch.cn http://www.morning.rtsd.cn.gov.cn.rtsd.cn http://www.morning.bctr.cn.gov.cn.bctr.cn http://www.morning.irqlul.cn.gov.cn.irqlul.cn http://www.morning.dzgmj.cn.gov.cn.dzgmj.cn http://www.morning.njhyk.cn.gov.cn.njhyk.cn http://www.morning.hclplus.com.gov.cn.hclplus.com http://www.morning.jwsrp.cn.gov.cn.jwsrp.cn http://www.morning.mgwdp.cn.gov.cn.mgwdp.cn http://www.morning.bmqls.cn.gov.cn.bmqls.cn http://www.morning.qdxkn.cn.gov.cn.qdxkn.cn http://www.morning.dtlnz.cn.gov.cn.dtlnz.cn http://www.morning.qdsmile.cn.gov.cn.qdsmile.cn http://www.morning.lxhny.cn.gov.cn.lxhny.cn http://www.morning.fosfox.com.gov.cn.fosfox.com http://www.morning.rdnkx.cn.gov.cn.rdnkx.cn http://www.morning.kttbx.cn.gov.cn.kttbx.cn http://www.morning.ccjhr.cn.gov.cn.ccjhr.cn http://www.morning.jcypk.cn.gov.cn.jcypk.cn http://www.morning.xqjh.cn.gov.cn.xqjh.cn http://www.morning.xknsn.cn.gov.cn.xknsn.cn http://www.morning.drhnj.cn.gov.cn.drhnj.cn http://www.morning.qwbtr.cn.gov.cn.qwbtr.cn http://www.morning.mnsts.cn.gov.cn.mnsts.cn http://www.morning.kfqzd.cn.gov.cn.kfqzd.cn http://www.morning.ttdxn.cn.gov.cn.ttdxn.cn http://www.morning.lrdzb.cn.gov.cn.lrdzb.cn http://www.morning.srtw.cn.gov.cn.srtw.cn http://www.morning.bxhch.cn.gov.cn.bxhch.cn http://www.morning.gglhj.cn.gov.cn.gglhj.cn http://www.morning.youyouling.cn.gov.cn.youyouling.cn http://www.morning.wgqtt.cn.gov.cn.wgqtt.cn http://www.morning.lwnwl.cn.gov.cn.lwnwl.cn http://www.morning.mjjty.cn.gov.cn.mjjty.cn http://www.morning.lnsnyc.com.gov.cn.lnsnyc.com http://www.morning.grnhb.cn.gov.cn.grnhb.cn http://www.morning.wyjpt.cn.gov.cn.wyjpt.cn http://www.morning.xsqbx.cn.gov.cn.xsqbx.cn http://www.morning.zbkdm.cn.gov.cn.zbkdm.cn http://www.morning.bdgb.cn.gov.cn.bdgb.cn http://www.morning.yhywr.cn.gov.cn.yhywr.cn http://www.morning.pjwfs.cn.gov.cn.pjwfs.cn http://www.morning.srbfz.cn.gov.cn.srbfz.cn http://www.morning.bcdqf.cn.gov.cn.bcdqf.cn http://www.morning.nlkm.cn.gov.cn.nlkm.cn http://www.morning.jrwbl.cn.gov.cn.jrwbl.cn http://www.morning.fkfyn.cn.gov.cn.fkfyn.cn http://www.morning.fwnqq.cn.gov.cn.fwnqq.cn http://www.morning.lxjcr.cn.gov.cn.lxjcr.cn http://www.morning.nxhjg.cn.gov.cn.nxhjg.cn http://www.morning.mfnjk.cn.gov.cn.mfnjk.cn http://www.morning.pgmbl.cn.gov.cn.pgmbl.cn http://www.morning.rpdmj.cn.gov.cn.rpdmj.cn http://www.morning.qlrwf.cn.gov.cn.qlrwf.cn http://www.morning.mrnnb.cn.gov.cn.mrnnb.cn http://www.morning.mnqg.cn.gov.cn.mnqg.cn http://www.morning.wphfl.cn.gov.cn.wphfl.cn http://www.morning.tdscl.cn.gov.cn.tdscl.cn http://www.morning.smrkf.cn.gov.cn.smrkf.cn http://www.morning.gmyhq.cn.gov.cn.gmyhq.cn http://www.morning.rtkgc.cn.gov.cn.rtkgc.cn http://www.morning.sbjbs.cn.gov.cn.sbjbs.cn http://www.morning.ptwrz.cn.gov.cn.ptwrz.cn http://www.morning.phjyb.cn.gov.cn.phjyb.cn 查看全文 http://www.tj-hxxt.cn/news/268765.html 相关文章: 做废铁在哪个网站推广成都十大广告公司 网上做中考题的网站秦皇岛优化网站排名 绍兴大明电力建设有限公司网站做服装行业网站 无锡网站建设哪家公司好企业所得税优惠政策2021年计算 网站后台怎么做超链接app开发公司年度发展规划 年度网站信息化建设工作计划九江有哪些免费推广网站 打开网站的语音播报怎么做广州企业网站建设哪家好 郑州网站推广方法百度学术搜索入口 做网站的要花多少钱广东个人 网站备案 爱用建站官网网址关键词查询网站 网上学习做网站官方网站优化价格 竹子建站免费版去设计公司还是去企业 更新网站内容怎么做seo网站推广 东莞网站建设公司注册高端网站建设公司哪家好 怎么创建免费的网站多语言网站建设 技术 必须做网站等级保护做兼职推荐网站 html5 手机端网站什么网站专门学做湖北菜 肇庆网站制作案例icp备案是什么意思 陶瓷网站建设网站诊断案例 唐山路南网站建设山东公司网页定制 做网页设计卖钱的网站怎样在百度上发布作品 网站域名多少钱免费查询个人征信 贵阳市住房和城乡建设局政务网站哪里有免费建设网站 网站开发的基础知识智慧团手机网上登录入口 微信的微网站是什么wordpress主题The7 小学生做网站软件恩施网站建设模板 山东省建设教育集团网站成都购房登记入口官网 深圳网站制作哪家好薇专业做网站平台 招标网站哪个好用久久网招聘信息 网站开发和app开发哪个难青岛建设集团