Go to file
yexuejc 4e4dffffe9 demo工程注释 2019-11-01 13:28:20 +08:00
doc 增加示例代码 2019-07-27 11:17:04 +08:00
yexuejc-springboot-base 1.2.2 更新redis配置 2019-11-01 13:26:24 +08:00
yexuejc-springboot-example 1.2.2 更新redis配置 2019-11-01 13:26:24 +08:00
.gitignore 1.0.13 升级base 2018-08-17 11:42:22 +08:00
LICENSE first commit 2018-04-09 15:11:25 +08:00
README.md 1.2.2 redis 配置修改,增加开关,更兼容 2019-11-01 13:13:02 +08:00
UPDATE.md 1.2.2 redis 配置修改,增加开关,更兼容 2019-11-01 13:13:02 +08:00
pom.xml demo工程注释 2019-11-01 13:28:20 +08:00

README.md

yexuejc-springboot

说明

基于springboot版本分别维护1.x(对应springboot1.5.16.RELEASE) 2.x(对应springboot2.0.5.RELEASE) 分支
master将继续同步1.x分支后期获取会同步于2.x

项目介绍

基于springboot maven 封装可继承基础工程

内含parent和base工程可分开使用
parent版本封装
base:功能封装

最新版本

  • yexuejc.springboot.version=1.2.2
  • yexuejc.base.version=1.3.9

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>

目录

\src\main\java 核心代码
\src\main\resources 核心配置
com.yexuejc.springboot.base.autoconfigure.* 模块封装
com.yexuejc.springboot.base.constant.* 系统常量
com.yexuejc.springboot.base.filter.* 过滤器
com.yexuejc.springboot.base.interceptor.* 拦截器
com.yexuejc.springboot.base.security.* 多方登录集成
com.yexuejc.springboot.base.http.* 网络层
com.yexuejc.springboot.base.pojo.* bean
com.yexuejc.springboot.base.util.* 工具包
\src\test\ 测试部分
com.yexuejc.springboot.base.ApplicationRun 测试启动入口

版本更新

更新记录
相关功能使用指南