美文网首页技术分享
分布式调度定时器平台

分布式调度定时器平台

作者: 星可码农 | 来源:发表于2019-11-05 11:56 被阅读0次

    分布式调度定时器平台

    1.数据库表资源路径:/xxl-job/doc/db/tables_xxl_job.sql

    2.java代码资源:xxl-job-admin:调度中心 xxl-job-core:公共依赖

                                  xxl-job-executor-sample-springboot:Springboot版本,通过Springboot管理执行器,推荐这种方式;

    3.调度中心:xxl-job-admin

    配置文件:xxl-job-admin.properties

    ### 调度中心JDBC链接:链接地址请保持和 2.1章节 所创建的调度数据库的地址一致

    spring.datasource.url=jdbc:mysql://127.0.0.1:3306/xxl_job?Unicode=true&characterEncoding=UTF-8

    spring.datasource.username=root

    spring.datasource.password=root_pwd

    spring.datasource.driver-class-name=com.mysql.jdbc.Driver

    ### 报警邮箱

    spring.mail.host=smtp.qq.com

    spring.mail.port=25

    spring.mail.username=xxx@qq.com

    spring.mail.password=xxx

    spring.mail.properties.mail.smtp.auth=true

    spring.mail.properties.mail.smtp.starttls.enable=true

    spring.mail.properties.mail.smtp.starttls.required=true

    spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory

    xxl-job, access token

    xxl.job.accessToken=

    xxl-job, i18n (default empty as chinese, "en" as english)

    xxl.job.i18n=

    启动项目账号admin/123456

    5  注意对应的执行器管理设置:其中appname要和定时器中配置参数相同

    https://rtmarket.oss-cn-hangzhou.aliyuncs.com/test/business/tmp/295430767503220736.png

    6.定时器项目配置如下:

    ##xxl-job admin address list, such as "http://address" or "http://address01,http://address02"

    xxl.job.admin.addresses=http://127.0.0.1:8080/xxl-job-admin

    ##xxl-job executor address

    ##要和调度中心设置一致

    xxl.job.executor.appname=xxl-job-executor-sample

    xxl.job.executor.ip=

    xxl.job.executor.port=2222

    ##xxl-job, access token

    xxl.job.accessToken=

    ##xxl-job log path

    xxl.job.executor.logpath=/data/applogs/xxl-job/jobhandler

    ##xxl-job log retention days

    xxl.job.executor.logretentiondays=-1

    定时器项目配置执行文件是XxlJobConfig.java

    执行任务配置如下:

    通过bean模式调度定时器

    注册到执行器工厂:添加“@JobHandler(value="自定义jobhandler名称")”注解,注解value值对应的是调度中心新建任务的JobHandler属性的值。

    参考文档:http://www.xuxueli.com/xxl-job/#/?id=%E3%80%8A%E5%88%86%E5%B8%83%E5%BC%8F%E4%BB%BB%E5%8A%A1%E8%B0%83%E5%BA%A6%E5%B9%B3%E5%8F%B0xxl-job%E3%80%8B

    git地址:https://github.com/xuxueli/xxl-job.git

    相关文章

      网友评论

        本文标题:分布式调度定时器平台

        本文链接:https://www.haomeiwen.com/subject/etcnuctx.html