File tree 18 files changed +35
-49
lines changed
src/main/java/com/codingapi/tx/dubbo/service/impl
src/main/java/com/codingapi/tx/motan/service/impl
src/main/java/com/codingapi/tx/springcloud/service/impl
src/main/java/com/codingapi/tx
18 files changed +35
-49
lines changed Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >tx-lcn</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
<packaging >pom</packaging >
10
10
11
11
<name >tx-lcn</name >
Original file line number Diff line number Diff line change 7
7
8
8
<groupId >com.codingapi</groupId >
9
9
<artifactId >transaction-dubbo</artifactId >
10
- <version >4.0.2-SNAPSHOT </version >
10
+ <version >4.0.2</version >
11
11
12
12
<name >transaction-dubbo</name >
13
13
<url >https://github.com/codingapi/tx-lcn</url >
68
68
<dependency >
69
69
<groupId >com.codingapi</groupId >
70
70
<artifactId >tx-client</artifactId >
71
- <version >4.0.2-SNAPSHOT </version >
71
+ <version >4.0.2</version >
72
72
</dependency >
73
73
74
74
<dependency >
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public class TimeOutServiceImpl implements TimeOutService {
19
19
20
20
@ Override
21
21
public void loadOutTime (int timeOut ) {
22
- int finalTimeOut = (null != providerConfig .getTimeout ()) ? providerConfig .getTimeout () : timeOut ;
22
+ int finalTimeOut = (null != providerConfig .getTimeout ()) ? providerConfig .getTimeout () : ( timeOut * 1000 ) ;
23
23
Constants .maxOutTime = finalTimeOut ;
24
24
}
25
25
}
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.codingapi</groupId >
8
8
<artifactId >transaction-motan</artifactId >
9
- <version >4.0.2-SNAPSHOT </version >
9
+ <version >4.0.2</version >
10
10
11
11
<name >transaction-motan</name >
12
12
<url >https://github.com/codingapi/tx-lcn</url >
66
66
<dependency >
67
67
<groupId >com.codingapi</groupId >
68
68
<artifactId >tx-client</artifactId >
69
- <version >4.0.2-SNAPSHOT </version >
69
+ <version >4.0.2</version >
70
70
</dependency >
71
71
72
72
<!-- motan config start-->
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class TimeOutServiceImpl implements TimeOutService {
25
25
* @param timeOut timeOut
26
26
*/
27
27
public void loadOutTime (int timeOut ) {
28
- int finalTimeOut = (null != basicServiceConfigBean .getRequestTimeout () ? basicServiceConfigBean .getRequestTimeout () : timeOut );
29
- Constants .maxOutTime = timeOut ;
28
+ int finalTimeOut = (null != basicServiceConfigBean .getRequestTimeout ()) ? basicServiceConfigBean .getRequestTimeout () : ( timeOut * 1000 );
29
+ Constants .maxOutTime = finalTimeOut ;
30
30
}
31
31
}
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >transaction-springcloud</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
10
10
<name >transaction-springcloud</name >
11
11
<url >https://github.com/codingapi/tx-lcn</url >
69
69
<dependency >
70
70
<groupId >com.codingapi</groupId >
71
71
<artifactId >tx-client</artifactId >
72
- <version >4.0.2-SNAPSHOT </version >
72
+ <version >4.0.2</version >
73
73
</dependency >
74
74
75
75
<dependency >
Original file line number Diff line number Diff line change @@ -13,11 +13,8 @@ public class TimeOutServiceImpl implements TimeOutService {
13
13
14
14
@ Override
15
15
public void loadOutTime (int timeOut ) {
16
- //todo 暂时写死
17
- /*int timeOut = 20*1000;
18
- Constants.maxOutTime = timeOut;*/
19
16
//从txManager取
20
- if (timeOut < 0 ){
17
+ if (timeOut <= 0 ){
21
18
Constants .maxOutTime = 20 *1000 ;
22
19
} else {
23
20
Constants .maxOutTime = timeOut *1000 ;
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >tx-client</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
10
10
<name >tx-client</name >
11
11
<url >https://github.com/codingapi/tx-lcn</url >
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ public class Constants {
17
17
18
18
19
19
/**
20
- * 最大模块超时时间
20
+ * 最大模块超时时间(毫秒)
21
21
*/
22
- public static int maxOutTime = 10 ;
22
+ public static int maxOutTime = 10000 ;
23
23
24
24
/**
25
25
* 模块唯一标示
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class NettyServiceImpl implements NettyService {
35
35
36
36
@ Autowired
37
37
private NettyControlService nettyControlService ;
38
-
38
+
39
39
@ Autowired
40
40
private TimeOutService timeOutService ;
41
41
@@ -62,7 +62,7 @@ public synchronized void start() {
62
62
int autoCompensateLimit = Constants .txServer .getAutoCompensateLimit ();
63
63
64
64
final TransactionHandler transactionHandler = new TransactionHandler (nettyControlService , delay );
65
-
65
+
66
66
timeOutService .loadOutTime (autoCompensateLimit );
67
67
workerGroup = new NioEventLoopGroup ();
68
68
try {
@@ -102,16 +102,7 @@ public void run() {
102
102
});
103
103
104
104
} catch (Exception e ) {
105
- e .printStackTrace ();
106
-
107
- // isStarting = false;
108
- //
109
- // //断开重新连接机制
110
- // close();
111
- //
112
- // if (e instanceof ConnectTimeoutException) {
113
- // start();
114
- // }
105
+ logger .error (e .getLocalizedMessage ());
115
106
}
116
107
}
117
108
@@ -126,11 +117,6 @@ public synchronized void close() {
126
117
}
127
118
}
128
119
129
- //
130
- // @Override
131
- // public String sendMsg(Request request) {
132
- // return transactionHandler.sendMsg(request);
133
- // }
134
120
135
121
@ Override
136
122
public boolean checkState () {
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >tx-manager</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
<packaging >jar</packaging >
10
10
11
11
<name >tx-manager</name >
Original file line number Diff line number Diff line change 13
13
import org .slf4j .LoggerFactory ;
14
14
import org .springframework .beans .factory .annotation .Autowired ;
15
15
import org .springframework .cloud .client .discovery .DiscoveryClient ;
16
- import org .springframework .cloud .client .serviceregistry .Registration ;
17
16
import org .springframework .stereotype .Service ;
18
17
import org .springframework .web .client .RestTemplate ;
19
18
Original file line number Diff line number Diff line change 2
2
3
3
import org .slf4j .Logger ;
4
4
import org .slf4j .LoggerFactory ;
5
- import org .springframework .boot .autoconfigure .EnableAutoConfiguration ;
6
- import org .springframework .boot .autoconfigure .jdbc .DataSourceAutoConfiguration ;
7
- import org .springframework .boot .autoconfigure .orm .jpa .HibernateJpaAutoConfiguration ;
8
5
import org .springframework .boot .context .properties .ConfigurationProperties ;
9
6
import org .springframework .context .annotation .Bean ;
7
+ import org .springframework .context .annotation .Configuration ;
10
8
import org .springframework .data .redis .connection .jedis .JedisConnectionFactory ;
11
9
import org .springframework .data .redis .core .RedisTemplate ;
12
10
import org .springframework .data .redis .core .StringRedisTemplate ;
16
14
* Created by lorne on 2017/7/5.
17
15
*/
18
16
19
- @ EnableAutoConfiguration ( exclude = { DataSourceAutoConfiguration . class , HibernateJpaAutoConfiguration . class })
17
+ @ Configuration
20
18
public class RedisConfig {
21
19
22
20
private static Logger logger = LoggerFactory .getLogger (RedisConfig .class );
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ tm.compensate.notifyUrl=http://ip:port/path
59
59
# 补偿失败,再次尝试间隔(秒),最大尝试次数3次,当超过3次即为补偿失败。
60
60
tm.compensate.tryTime =30
61
61
62
- # 各组件自动补偿的时间上限
62
+ # 各事务模块自动补偿的时间上限
63
63
tm.auto.compensate.limit =20
64
64
65
65
Original file line number Diff line number Diff line change 2
2
< html lang ="en " xmlns:th ="http://www.w3.org/1999/xhtml ">
3
3
< head >
4
4
< meta charset ="UTF-8 "/>
5
- < title > TxManager v4.0.2-SNAPSHOT </ title >
5
+ < title > TxManager v4.0.2</ title >
6
6
<!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
7
7
< link rel ="stylesheet " href ="static/bootstrap/css/bootstrap.min.css "/>
8
8
< script src ="static/jquery/jquery.min.js "> </ script >
24
24
< body >
25
25
< div class ="container ">
26
26
27
- < h3 class ="text-center "> TxManagerV4.0.2-SNAPSHOT 服务已启动</ h3 >
27
+ < h3 class ="text-center "> TxManagerV4.0.2 服务已启动</ h3 >
28
28
< div class ="table-responsive ">
29
29
< table class ="table table-bordered table-striped ">
30
30
< colgroup >
@@ -116,6 +116,12 @@ <h3 class="text-center">TxManagerV4.0.2-SNAPSHOT 服务已启动</h3>
116
116
</ th >
117
117
< td > < span id ="compensateTryTime "> </ span > </ td >
118
118
</ tr >
119
+ < tr >
120
+ < th scope ="row ">
121
+ 各事务模块自动补偿的时间上限(秒)
122
+ </ th >
123
+ < td > < span id ="autoCompensateLimit "> </ span > </ td >
124
+ </ tr >
119
125
</ tbody >
120
126
</ table >
121
127
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >tx-plugins-db</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
10
10
<name >tx-plugins-db</name >
11
11
<url >https://github.com/codingapi/tx-lcn</url >
67
67
<dependency >
68
68
<groupId >com.codingapi</groupId >
69
69
<artifactId >tx-client</artifactId >
70
- <version >4.0.2-SNAPSHOT </version >
70
+ <version >4.0.2</version >
71
71
</dependency >
72
72
73
73
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >tx-plugins-nodb</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
10
10
<name >tx-plugins-nodb</name >
11
11
<url >https://github.com/codingapi/tx-lcn</url >
68
68
<dependency >
69
69
<groupId >com.codingapi</groupId >
70
70
<artifactId >tx-client</artifactId >
71
- <version >4.0.2-SNAPSHOT </version >
71
+ <version >4.0.2</version >
72
72
</dependency >
73
73
74
74
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.codingapi</groupId >
7
7
<artifactId >tx-plugins-redis</artifactId >
8
- <version >4.0.2-SNAPSHOT </version >
8
+ <version >4.0.2</version >
9
9
10
10
<name >tx-plugins-redis</name >
11
11
<description >tx-plugins-redis project for Spring Boot</description >
74
74
<dependency >
75
75
<groupId >com.codingapi</groupId >
76
76
<artifactId >tx-client</artifactId >
77
- <version >4.0.2-SNAPSHOT </version >
77
+ <version >4.0.2</version >
78
78
</dependency >
79
79
80
80
<dependency >
You can’t perform that action at this time.
0 commit comments