mvc、apollo、eureka工程增加 md 说明文件

This commit is contained in:
Administrator
2020-10-22 14:41:09 +08:00
parent 006c51dd09
commit 950769ebc2
4 changed files with 58 additions and 4 deletions

View File

@ -0,0 +1,19 @@
## MAll-EBTP-Apollo-Cloud-Starter
提供 Apollo Client 所需要工具包和基础配置
</br></br></br>
### 模块提供的通用能力及配置:
- Apollo 默认配置
- 使用者需要自行配置参数 app.id
### 模块引入方式
```
<dependencies>
<dependency>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-apollo-starter</artifactId>
<version>${lastVersion}</version>
</dependency>
</dependencies>
```

View File

@ -0,0 +1,18 @@
## MAll-EBTP-EUREKA-Cloud-Starter
提供 Eureka Client 所需要工具包和基础配置
</br></br></br>
### 模块提供的通用能力及配置:
- Eureka 默认配置
### 模块引入方式
```
<dependencies>
<dependency>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-eureka-starter</artifactId>
<version>${lastVersion}</version>
</dependency>
</dependencies>
```

View File

@ -0,0 +1,21 @@
## MAll-EBTP-MVC-Cloud-Starter
提供创建Restful工程所需要工具包和基础配置
</br></br></br>
### 模块提供的通用能力及配置:
- 统一异常处理 (可以通过设置参数 mconfig.exception-handle-enabled = true 禁用)
- 统一异常类 com.chinaunicom.mall.ebtp.cloud.mvc.starter.exception.BusinessException
- 统一返回 com.chinaunicom.mall.ebtp.cloud.mvc.starter.base.BaseResponse
- 通用异常枚举 com.chinaunicom.mall.ebtp.cloud.mvc.starter.enums.ResponseEnum
### 模块引入方式
```
<dependencies>
<dependency>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-mvc-starter</artifactId>
<version>${lastVersion}</version>
</dependency>
</dependencies>
```

View File

@ -36,10 +36,6 @@
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
<dependency>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-common</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>