JustFreedom
JustFreedom
目前我已经将新的镜像放到我的服务器并启动了,目前看起来是和官网的一样了。 **但还是建议在1.7.0之后的版本hotfix这个问题**,只要业务在同一个事物中多次操作数据,就会导致回滚失败 处理步骤如下: 1、将seata-server 下的pom.xml中的 jib-maven-plugin 节点下的 (修改build ->dockerBuild) ``` package build ``` 改为 ``` package dockerBuild ``` 2、cd server/ 3、build镜像,并推送到本地(如果需要推送到指定地址(如localhost:5000),需要添加 参数 -Dimage.name=localhost:5000/seata-server) ``` mvn package jib:dockerBuild -Prelease-image-based-on-java8,release-seata -DskipTests -Dimage.publish.skip=false...