添加分布式事务TX-LCN
1. 搭建TX-LCN服务端
注意:在 Spring Boot2.x 版本中要求TX-LCN必须是5.0 以上
① 向数据库中导入SQL文件
② 修改application.properties文件的数据库的IP地址
③ 配置TX-managerID。TX的服务端在哪一环境上运行,就配置哪台设配的IP(本机或者linux上)
④ 配置redis的地址
将TX的服务端上传到linux中
上传到eureka的服务端,在/usr/local创建tx-lcn文件夹,将上传的文件放到此文件夹中,进行文件的解压,使用unzip ,若未进行安装,yum -y install unzip进行安装,在解压文件。
访问管理页面:192.168.54.171:7970
创建TX_LCN客户端
1.创建项目,导入依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>bz_parent</artifactId>
<groupId>com.bjsxt</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>common_tx_manager_client</artifactId>
<dependencies>
<dependency>
<groupId>com.codingapi.txlcn</groupId>
<artifactId>txlcn-tc</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
<dependency>
<groupId>com.codingapi.txlcn</groupId>
<artifactId>txlcn-txmsg-netty</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
</dependencies>
</project>