旅游网站功能模块,商丘市网站建设推广,网页如何发布到服务器上,网站建设与运营市场风险GlobalStatus枚举类展示全局事务状态 官网链接#xff1a;http://seata.io/zh-cn/docs/user/appendix/global-transaction-status.html
获得全局事务状态
// 开启全局事务地方获取全局事务xid
String xid RootContext.getXID();
// 通过全局事务xid获得GlobalStatus枚举类
…GlobalStatus枚举类展示全局事务状态 官网链接http://seata.io/zh-cn/docs/user/appendix/global-transaction-status.html
获得全局事务状态
// 开启全局事务地方获取全局事务xid
String xid RootContext.getXID();
// 通过全局事务xid获得GlobalStatus枚举类
GlobalTransaction globalTransaction GlobalTransactionContext.reload(xid);
GlobalStatus globalStatus globalTransaction.getStatus();
// 通过GlobalStatus枚举类获取全局事务状态值
int code globalStatus.getCode();