mirror of
https://gitee.com/incloudcode/yexuejc-springboot.git
synced 2025-07-15 00:07:28 +08:00
101 lines
2.3 KiB
Markdown
101 lines
2.3 KiB
Markdown
# yexuejc-springboot-base
|
||
|
||
|
||
#### 项目介绍
|
||
基于springboot maven 封装可继承基础工程
|
||
|
||
内含parent和base工程可分开使用<br/>
|
||
parent:版本封装<br/>
|
||
base:功能封装
|
||
|
||
#### 引用
|
||
>yexuejc.springboot.version=1.0.5
|
||
|
||
pom.xml
|
||
```
|
||
<!--parent 引用-->
|
||
<parent>
|
||
<groupId>com.github.yexuejc.yexuejc-springboot</groupId>
|
||
<artifactId>yexuejc-springboot-parent</artifactId>
|
||
<version>${yexuejc.springboot.version}</version>
|
||
</parent>
|
||
|
||
<dependencies>
|
||
<!--base 引用-->
|
||
<dependency>
|
||
<groupId>com.github.yexuejc.yexuejc-springboot</groupId>
|
||
<artifactId>yexuejc-springboot-base</artifactId>
|
||
<version>${parent.version}</version>
|
||
</dependency>
|
||
<!--推荐使用-->
|
||
<!--https://gitee.com/incloudcode/yexuejc-base.git-->
|
||
<dependency>
|
||
<groupId>com.github.yexuejc</groupId>
|
||
<artifactId>yexuejc-base</artifactId>
|
||
<version>${yexuejc.base.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
<repositories>
|
||
<repository>
|
||
<id>jitpack.io</id>
|
||
<url>https://jitpack.io</url>
|
||
</repository>
|
||
</repositories>
|
||
```
|
||
|
||
|
||
#### 目录
|
||
<table>
|
||
<tr>
|
||
<td>\src\main\java</td>
|
||
<td>核心代码</td>
|
||
</tr>
|
||
<tr>
|
||
<td>\src\main\resources</td>
|
||
<td>核心配置</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.autoconfigure.*</td>
|
||
<td>模块封装</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.constant.*</td>
|
||
<td>系统常量</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.filter.*</td>
|
||
<td>过滤器</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.interceptor.*</td>
|
||
<td>拦截器</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.http.*</td>
|
||
<td>网络层</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.pojo.*</td>
|
||
<td>bean</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.util.*</td>
|
||
<td>工具包</td>
|
||
</tr>
|
||
<tr>
|
||
<td>\src\test\</td>
|
||
<td>测试部分</td>
|
||
</tr>
|
||
<tr>
|
||
<td>com.yexuejc.springboot.base.ApplicationRun</td>
|
||
<td>测试启动入口</td>
|
||
</tr>
|
||
</table>
|
||
|
||
|
||
#### 版本更新
|
||
|
||
[更新记录](UPDATE.md)
|
||
<br/>
|
||
[1.0.5新增 针对API请求安全解决方案](PARAMS_RSA_DECRYPT_ENCRYPT.md)<br/>
|
||
[1.0.5新增 加密功能](PARAMS_RSA_DECRYPT_ENCRYPT.md) |