mirror of
https://gitee.com/incloudcode/yexuejc-springboot.git
synced 2025-07-19 18:19:31 +08:00
# Conflicts: # README.md # UPDATE.md # doc/MENU.md # doc/SECURITY.md # pom.xml # yexuejc-springboot-base/pom.xml # yexuejc-springboot-base/src/main/java/com/yexuejc/springboot/base/security/ConsumerAuthenticationProcessingFilter.java # yexuejc-springboot-base/src/main/java/com/yexuejc/springboot/base/security/UserDetailsManager.java # yexuejc-springboot-base/src/test/java/com/yexuejc/springboot/base/security/MySecurityConfig.java # yexuejc-springboot-base/src/test/java/com/yexuejc/springboot/base/security/UserServiceImpl.java # yexuejc-springboot-base/src/test/java/com/yexuejc/springboot/base/web/SecurityCtrl.java
110 lines
2.5 KiB
Markdown
110 lines
2.5 KiB
Markdown
# yexuejc-springboot
|
||
|
||
### 说明
|
||
>本分支基于 springboot 2.x 开发,版本号也将保持2.x
|
||
>1.x分支继续基于 springboot 1.x开发
|
||
|
||
#### 项目介绍
|
||
基于springboot maven 封装可继承基础工程
|
||
|
||
内含parent和base工程可分开使用<br/>
|
||
parent:版本封装<br/>
|
||
base:功能封装
|
||
|
||
#### 最新版本
|
||
>yexuejc.springboot.version=2.0.2 <br>
|
||
>yexuejc.base.version=1.2.0
|
||
|
||
pom.xml
|
||
```
|
||
<!--parent 引用-->
|
||
<parent>
|
||
<groupId>com.yexuejc.springboot</groupId>
|
||
<artifactId>yexuejc-springboot-parent</artifactId>
|
||
<version>最新版本</version>
|
||
</parent>
|
||
|
||
<dependencies>
|
||
<!--base 引用-->
|
||
<dependency>
|
||
<groupId>com.yexuejc.springboot</groupId>
|
||
<artifactId>yexuejc-springboot-base</artifactId>
|
||
<version>${parent.version}</version>
|
||
</dependency>
|
||
<!--推荐使用-->
|
||
<!--https://gitee.com/incloudcode/yexuejc-base.git-->
|
||
<dependency>
|
||
<groupId>com.yexuejc.base</groupId>
|
||
<artifactId>yexuejc-base</artifactId>
|
||
<version>${yexuejc.base.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
<repositories>
|
||
<repository>
|
||
<id>yexuejc-nexus-public</id>
|
||
<name>yexuejc-nexus-public</name>
|
||
<url>https://nexus.yexuejc.club/repository/maven-public/</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.security.*</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/>
|
||
[相关功能使用指南](doc/MENU.md)
|