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