Skip to content

Commit 010af39

Browse files
committed
5.0.0.RC1
1 parent 533486e commit 010af39

54 files changed

Lines changed: 171 additions & 145 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tx-lcn分布式事务框架 (5.0.0.beta)
1+
# tx-lcn分布式事务框架 (5.0.0.RC1)
22
[![Gitter](https://badges.gitter.im/codingapi/tx-lcn.svg)](https://gitter.im/codingapi/tx-lcn?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
33
## 项目介绍
44
5.0完全拥抱springboot体系,JDK版本为1.8开发,将不仅仅支持LCN事务模式,也引入了TCC,TXC模式,同时把分布式事务协调的模式抽象出来,让各种模式可以嵌套使用。

docs/docs/en-us/demo/dubbo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ spring.datasource.hikari.maximum-pool-size=20
129129
mybatis.configuration.map-underscore-to-camel-case=true
130130
mybatis.configuration.use-generated-keys=true
131131
```
132-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/dubbo-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/dubbo-demo-client)
132+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/dubbo-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/dubbo-demo-client)
133133

134134
## 四、启动Dubbo微服务
135135
(1) 事务参与方 D

docs/docs/en-us/demo/springcloud.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mybatis.configuration.map-underscore-to-camel-case=true
1818
mybatis.configuration.use-generated-keys=true
1919

2020
```
21-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-d](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-d)
21+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-d](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-d)
2222

2323
## 二、事务参与方E
2424
(1)新建Maven 工程
@@ -38,7 +38,7 @@ mybatis.configuration.map-underscore-to-camel-case=true
3838
mybatis.configuration.use-generated-keys=true
3939

4040
```
41-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-e](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-e)
41+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-e](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-e)
4242

4343
## 三、事务发起方Client
4444
(1)新建Maven 工程
@@ -63,7 +63,7 @@ mybatis.configuration.use-generated-keys=true
6363
ribbon.MaxAutoRetriesNextServer=0
6464

6565
```
66-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-client)
66+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-client)
6767

6868
## 四、启动SpringCloud微服务
6969
(1) 事务参与方 D

docs/docs/en-us/expansion/rpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public class RibbonFirstRestTemplateCustomizer implements RestTemplateCustomizer
9898
<parent>
9999
<artifactId>tx-lcn</artifactId>
100100
<groupId>com.codingapi.txlcn</groupId>
101-
<version>5.0.0.beta</version>
101+
<version>5.0.0.RC1</version>
102102
</parent>
103103
<modelVersion>4.0.0</modelVersion>
104104
<packaging>pom</packaging>

docs/docs/en-us/start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ springcloud pom
77
<dependency>
88
<groupId>com.codingapi.txlcn</groupId>
99
<artifactId>tx-client-springcloud</artifactId>
10-
<version>5.0.0.beta</version>
10+
<version>5.0.0.RC1</version>
1111
</dependency>
1212
```
1313
dubbo pom
1414
```xml
1515
<dependency>
1616
<groupId>com.codingapi.txlcn</groupId>
1717
<artifactId>tx-client-dubbo</artifactId>
18-
<version>5.0.0.beta</version>
18+
<version>5.0.0.RC1</version>
1919
</dependency>
2020
```
2121
> `NOTE` 依微服务架构依赖其一

docs/docs/zh-cn/demo/dubbo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ spring.datasource.hikari.maximum-pool-size=20
129129
mybatis.configuration.map-underscore-to-camel-case=true
130130
mybatis.configuration.use-generated-keys=true
131131
```
132-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/dubbo-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/dubbo-demo-client)
132+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/dubbo-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/dubbo-demo-client)
133133

134134
## 四、启动Dubbo微服务
135135
(1) 事务参与方 D

docs/docs/zh-cn/demo/springcloud.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mybatis.configuration.map-underscore-to-camel-case=true
1818
mybatis.configuration.use-generated-keys=true
1919

2020
```
21-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-d](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-d)
21+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-d](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-d)
2222

2323
## 二、事务参与方E
2424
(1)新建Maven 工程
@@ -38,7 +38,7 @@ mybatis.configuration.map-underscore-to-camel-case=true
3838
mybatis.configuration.use-generated-keys=true
3939

4040
```
41-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-e](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-e)
41+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-e](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-e)
4242

4343
## 三、事务发起方Client
4444
(1)新建Maven 工程
@@ -63,7 +63,7 @@ mybatis.configuration.use-generated-keys=true
6363
ribbon.MaxAutoRetriesNextServer=0
6464

6565
```
66-
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/spring-demo-client)
66+
src:[https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-client](https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/spring-demo-client)
6767

6868
## 四、启动SpringCloud微服务
6969
(1) 事务参与方 D

docs/docs/zh-cn/expansion/rpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public class RibbonFirstRestTemplateCustomizer implements RestTemplateCustomizer
9898
<parent>
9999
<artifactId>tx-lcn</artifactId>
100100
<groupId>com.codingapi.txlcn</groupId>
101-
<version>5.0.0.beta</version>
101+
<version>5.0.0.RC1</version>
102102
</parent>
103103
<modelVersion>4.0.0</modelVersion>
104104
<packaging>pom</packaging>

docs/docs/zh-cn/start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ springcloud pom
77
<dependency>
88
<groupId>com.codingapi.txlcn</groupId>
99
<artifactId>tx-client-springcloud</artifactId>
10-
<version>5.0.0.beta</version>
10+
<version>5.0.0.RC1</version>
1111
</dependency>
1212
```
1313
dubbo pom
1414
```xml
1515
<dependency>
1616
<groupId>com.codingapi.txlcn</groupId>
1717
<artifactId>tx-client-dubbo</artifactId>
18-
<version>5.0.0.beta</version>
18+
<version>5.0.0.RC1</version>
1919
</dependency>
2020
```
2121
> `NOTE` 依微服务架构依赖其一

docs/en-us/docs/demo/dubbo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ <h2>三、事务发起方 Client</h2>
137137
<span class="hljs-meta">mybatis.configuration.map-underscore-to-camel-case</span>=<span class="hljs-string">true</span>
138138
<span class="hljs-meta">mybatis.configuration.use-generated-keys</span>=<span class="hljs-string">true</span>
139139
</code></pre>
140-
<p>src:<a href="https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/dubbo-demo-client">https://github.com/codingapi/tx-lcn/tree/5.0.0.beta/example/dubbo-demo-client</a></p>
140+
<p>src:<a href="https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/dubbo-demo-client">https://github.com/codingapi/tx-lcn/tree/5.0.0.RC1/example/dubbo-demo-client</a></p>
141141
<h2>四、启动Dubbo微服务</h2>
142142
<p>(1) 事务参与方 D<br>
143143
<img src="img/dubbo-d.png" alt="dubbo-d">

0 commit comments

Comments
 (0)