mirror of
https://gitee.com/incloudcode/yexuejc-springboot.git
synced 2025-07-14 07:47:28 +08:00
version:1.0.4
This commit is contained in:
parent
01fe6ccce2
commit
6ddf748f8e
38
README.md
38
README.md
@ -1,17 +1,38 @@
|
|||||||
# yexuejc-springboot-base
|
# yexuejc-springboot-base
|
||||||
|
|
||||||
|
|
||||||
|
#### 项目介绍
|
||||||
基于springboot maven 封装可继承基础工程
|
基于springboot maven 封装可继承基础工程
|
||||||
|
|
||||||
### 引用
|
内含parent和base工程可分开使用
|
||||||
>yexuejc.springboot.version=1.0.3
|
parent:版本封装
|
||||||
|
base:功能封装
|
||||||
|
|
||||||
|
#### 引用
|
||||||
|
>yexuejc.springboot.version=1.0.4
|
||||||
|
|
||||||
pom.xml
|
pom.xml
|
||||||
```
|
```
|
||||||
|
<!--parent 引用-->
|
||||||
|
<parent>
|
||||||
|
<groupId>com.github.yexuejc.yexuejc-springboot</groupId>
|
||||||
|
<artifactId>yexuejc-springboot-parent</artifactId>
|
||||||
|
<version>${yexuejc.springboot.version}</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<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>
|
<dependency>
|
||||||
<groupId>com.github.yexuejc</groupId>
|
<groupId>com.github.yexuejc</groupId>
|
||||||
<artifactId>yexuejc-springboot</artifactId>
|
<artifactId>yexuejc-base</artifactId>
|
||||||
<version>${yexuejc.springboot.version}</version>
|
<version>${yexuejc.base.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<repositories>
|
<repositories>
|
||||||
@ -23,7 +44,7 @@ pom.xml
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### 目录
|
#### 目录
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>\src\main\java</td>
|
<td>\src\main\java</td>
|
||||||
@ -69,4 +90,9 @@ pom.xml
|
|||||||
<td>com.yexuejc.springboot.base.ApplicationRun</td>
|
<td>com.yexuejc.springboot.base.ApplicationRun</td>
|
||||||
<td>测试启动入口</td>
|
<td>测试启动入口</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
#### 版本更新
|
||||||
|
|
||||||
|
[更新记录](UPDATE.md)
|
@ -1,6 +1,12 @@
|
|||||||
uselaw-base 更新内容
|
uselaw-base 更新内容
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
#### version :1.0.4
|
||||||
|
**time:** 2018-5-4 09:54:18<br/>
|
||||||
|
**branch:** master <br/>
|
||||||
|
**update:** <br/>
|
||||||
|
>1.更新springboot至1.5.12.RELEASE
|
||||||
|
#
|
||||||
#### version :1.0.3
|
#### version :1.0.3
|
||||||
**time:** 2018-4-9 15:24:13<br/>
|
**time:** 2018-4-9 15:24:13<br/>
|
||||||
**branch:** master <br/>
|
**branch:** master <br/>
|
||||||
|
4
pom.xml
4
pom.xml
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<groupId>com.yexuejc.springboot</groupId>
|
<groupId>com.yexuejc.springboot</groupId>
|
||||||
<artifactId>yexuejc-springboot-parent</artifactId>
|
<artifactId>yexuejc-springboot-parent</artifactId>
|
||||||
<version>1.0.3</version>
|
<version>1.0.4</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>${project.artifactId}</name>
|
<name>${project.artifactId}</name>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
<!-- spring boot父级,包含了统一版本管理,统一插件管理等 -->
|
<!-- spring boot父级,包含了统一版本管理,统一插件管理等 -->
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
<version>1.5.9.RELEASE</version>
|
<version>1.5.12.RELEASE</version>
|
||||||
<relativePath/> <!-- lookup parent from repository -->
|
<relativePath/> <!-- lookup parent from repository -->
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
server.port=8080
|
server.port=8080
|
||||||
logging.level.root=info
|
logging.level.root=info
|
||||||
|
|
||||||
|
security.basic.enabled=false
|
Loading…
x
Reference in New Issue
Block a user