shardingsphere5.5整合seata2.0.0及dubbo3.3.0执行业务时出现本地事务失效的情况,代码如下:
@GlobalTransactional(rollbackFor = Exception.class)
public int insertMember( int x) throws TransactionException {
int i = 0;
try {
// 通过dubbo远程调用
i = remoteInsertMember();
System.err.println("远程调用返回结果为" + i);
if (RootContext.inGlobalTransaction()) {
System.err.println("远程调用后在全局事务中" + RootContext.getXID());
} else {
System.err.println("远程调用后不在全局事务中" + RootContext.getXID());
}
// 运行到此处时尚在全局事务中
// 调用本地方法
i = localInsertMember();
System.err.println("本地调用返回结果为" + i);
if (RootContext.inGlobalTransaction()) {
System.err.println("本地调用后在全局事务中" + RootContext.getXID());
} else {
System.err.println("本地调用后不在全局事务中" + RootContext.getXID());
}
// 运行到此处时已不在全局事务中RootContext.getXID()为null
int aaa = 10 / x;
} catch (Exception e) {
System.err.println("执行失败,回滚事务" + e.getMessage());
System.err.println("回滚时RootContext.getXID()=" + RootContext.getXID()); // 运行到此处时已不在全局事务中RootContext.getXID()为null
if (RootContext.inGlobalTransaction()) {
System.err.println("回滚时在全局事务中" + RootContext.getXID());
} else {
System.err.println("回滚时不在全局事务中" + RootContext.getXID());
}
GlobalTransactionContext.reload(RootContext.getXID()).rollback();
}
return i;
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
阿里云关系型数据库主要有以下几种:RDS MySQL版、RDS PostgreSQL 版、RDS SQL Server 版、PolarDB MySQL版、PolarDB PostgreSQL 版、PolarDB分布式版 。