mirror of
https://gitee.com/incloudcode/yexuejc-springboot.git
synced 2025-07-17 17:27:26 +08:00
Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.2.4 to 42.4.1. - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](https://github.com/pgjdbc/pgjdbc/compare/REL42.2.4...REL42.4.1) --- updated-dependencies: - dependency-name: org.postgresql:postgresql dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
yexuejc-springboot
说明
基于springboot版本分别维护1.x(对应springboot1.5.16.RELEASE) 2.x(对应springboot2.0.5.RELEASE) 分支
master不再提供源代码,源代码请到具体分支中查看
项目介绍
基于springboot maven 封装可继承基础工程
内含parent和base工程可分开使用
parent:版本封装
base:功能封装
最新版本
- 1.x yexuejc.springboot.version=1.2.2
- 2.x yexuejc.springboot.version=2.1.1
- 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 | 测试启动入口 |
版本更新
持续集成中...
集成到自己项目前请先阅读文档,或者先运行示例工程
Description
Languages
Java
100%