1. AttachmentSDK 增加了新的数据模型

2. Seata starter 调整了 seata包版本, 修改了统一配置文件
This commit is contained in:
ajaxfan
2021-02-08 11:58:53 +08:00
parent a9469363f4
commit 8b88f7314e
39 changed files with 540 additions and 191 deletions

View File

@ -21,25 +21,9 @@
</properties>
<dependencies>
<dependency>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-jpa-starter</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-seata</artifactId>
<version>2.1.0.RELEASE</version>
<exclusions>
<exclusion>
<artifactId>seata-all</artifactId>
<groupId>io.seata</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-all</artifactId>
<version>${seata.version}</version>
<artifactId>seata-spring-boot-starter</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -31,7 +31,7 @@ transport {
service {
#transaction service group mapping
vgroupMapping.biz-service-ebtp-archive-fescar-service-group = "default"
vgroupMapping.biz-service-ebtp-project-service-group = "default"
#only support when registry.type=file, please don't set multiple addresses
default.grouplist = "10.242.31.158:18035"
#degrade, current not support
@ -64,4 +64,9 @@ client {
log {
exceptionRate = 100
}
support {
spring {
datasource-autoproxy = true
}
}
}

View File

@ -0,0 +1,5 @@
seata.enabled=true
seata.application-id=${spring.application.name}
seata.tx-service-group=${spring.application.name}-service-group
seata.service.vgroup-mapping.eshop-service-group=default
seata.service.grouplist.default=10.242.31.158:18035