/seata

:fire: Seata is an easy-to-use, high-performance, open source distributed transaction solution.

Primary LanguageJavaApache License 2.0Apache-2.0

  1. 编译项目源码 mvn clean install -Dpmd.skip=true -Dcheckstyle.skip=true -Dmaven.test.skip=true
    ## 1. 删除idea编辑器生成的impl文件
    find . -name "*.iml" -type f -print -exec rm -rf {} \;
    
    ## 2. 删除idea编辑器生成的.idea文件夹
    rm -rf .idea
    
    ## 3. 删除maven编译生成的target文件
    mvn clean
  1. seata-mybatis-demo为测试分布式事物写的demo案例,使用的是spring-boot + mybatis实现的,参考github上seata-sample源码
  2. seata-demo为测试分布式事物写的demo案例,使用的是spring-clout + open-feign + hystrix + mybatis-plus实现的