You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
462 B
Markdown
28 lines
462 B
Markdown
核心公共包
|
|
----------
|
|
|
|
## 简介
|
|
|
|
主要封装一些通用公共类、工具类,如业务异常父类,对象父类等。
|
|
|
|
## 使用
|
|
|
|
进入应用目录
|
|
|
|
安装命令:`mvn install`
|
|
|
|
## 使用指南
|
|
|
|
### 应用引入
|
|
|
|
需要将编译生成的jar包安装到本地maven类进入引用使用。
|
|
|
|
pom.xml
|
|
|
|
```
|
|
<dependency>
|
|
<groupId>com.springboot.cloud</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
``` |