本文来编写一个简单的实例来说下SpringBoot整合PowerJob
相关文档
PowerJob是一个定时任务中间件(框架),优点很多,PowerJob官网的对比图中可以看到PowerJob比Quartz、XXL-JOB等更加优秀
官网:http://www.powerjob.tech/
文档:https://www.yuque.com/powerjob/guidence/intro
快速开始:https://www.yuque.com/powerjob/guidence/quick_start
github:https://github.com/PowerJob/PowerJob
快速开始
PowerJob由调度服务器(powerjob-server)和执行器(powerjob-worker)两部分组成,powerjob-server负责提供Web服务和完成任务的调度,powerjob-worker则负责执行用户所编写的任务代码,同时提供分布式计算能力。
初始化项目
git clone https://github.com/KFCFans/PowerJob.git
导入 IDE,源码结构如下,我们需要启动调度服务器(powerjob-server),同时在 samples 工程中编写自己的处理器代码
启动服务端
创建数据库(仅需要创建数据库):
CREATE DATABASE IF NOT EXISTS `powerjob-daily` DEFAULT CHARSET utf8mb4
修改配置文件
配置文件的说明:官方文档写的非常详细,此处不再赘述。本处我的配置为:
oms.env=DAILY logging.config=classpath:logback-dev.xml Database properties(Configure according to the the environment) spring.datasource.core.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.core.jdbc-url=jdbc:mysql://localhost:3306/powerjob-daily?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai spring.datasource.core.username=root #spring.datasource.core.password=No1Bug2Please3! spring.datasource.core.password=root spring.datasource.core.maximum-pool-size=20 spring.datasource.core.minimum-idle=5 MongoDB properties(Non-core configuration properties) delete mongodb config to disable mongodb oms.mongodb.enable=false #spring.data.mongodb.uri=mongodb+srv://z:No1Bug2Please3!@cluster0.wie54.gcp.mongodb.net/powerjob_daily?retryWrites=true&w=majority Email properties(Non-core configuration properties) Delete the following code to disable the mail #spring.mail.host=smtp.163.com #spring.mail.username=z@163.com #spring.mail.password=GOFZPNARMVKCGONV #spring.mail.properties.mail.smtp.auth=true #spring.mail.properties.mail.smtp.starttls.enable=true #spring.mail.properties.mail.smtp.starttls.required=true DingTalk properties(Non-core configuration properties) Delete the following code to disable the DingTalk #oms.alarm.ding.app-key=dingauqwkvxxnqskknfv #oms.alarm.ding.app-secret=XWrEPdAZMPgJeFtHuL0LH73LRj-74umF2_0BFcoXMfvnX0pCQvt0rpb1JOJU_HLl #oms.alarm.ding.agent-id= Resource cleaning properties oms.instanceinfo.retention=1 oms.container.retention.local=1 oms.container.retention.remote=-1 Cache properties oms.instance.metadata.cache.size=1024 Threshold in precise fetching server(0~100). 100 means full detection of server, in which split-brain could be avoided while performance overhead would increase. oms.accurate.select.server.percentage = 50
启动服务
启动此类:tech.powerjob.server.PowerJobServerApplication
注册应用
访问:[http://127.0.0.1:7700/]
到此这篇PowerJob服务端部署的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!登录
版权声明:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权、违法违规、事实不符,请将相关资料发送至xkadmin@xkablog.com进行投诉反馈,一经查实,立即处理!
转载请注明出处,原文链接:https://www.xkablog.com/hd-yjs/4464.html