本文共 1029 字,大约阅读时间需要 3 分钟。
(1)下载分布式事务处理器工程源码
(2)导入eclipse (3)修改配置文件填写分布式事务服务器地址,redis地址 ,注册中心地址#服务端口server.port=7000#tx-manager不得修改spring.application.name=tx-managerspring.mvc.static-path-pattern=/**spring.resources.static-locations=classpath:/static/#eureka 地址eureka.client.service-url.defaultZone=http://127.0.0.1:8001/eureka/eureka.instance.prefer-ip-address=true#业务模块与TxManager之间通讯的最大等待时间(单位:秒)#通讯时间是指:发起方与响应方之间完成一次的通讯时间。#该字段代表的是Tx-Client模块与TxManager模块之间的最大通讯时间,超过该时间未响应本次请求失败。tm.transaction.netty.delaytime = 5#业务模块与TxManager之间通讯的心跳时间(单位:秒)tm.transaction.netty.hearttime = 15#存储到redis下的数据最大保存时间(单位:秒)#该字段仅代表的事务模块数据的最大保存时间,补偿数据会永久保存。tm.redis.savemaxtime=30#socket server Socket对外服务端口#TxManager的LCN协议的端口tm.socket.port=9999#最大socket连接数#TxManager最大允许的建立连接数量tm.socket.maxconnection=100tm.compensate.auto=falsetm.compensate.notifyUrl=http://ip:port/pathtm.compensate.tryTime=30tm.compensate.maxWaitTime=5000logging.level.com.codingapi=debug
(3)运行事务管理
启动事务管理器 TxManagerApplication.java 启动redis启动注册中心测试是注册中心注册成功转载于:https://blog.51cto.com/14048134/2310472