完成springboot-swagger2升级重构

This commit is contained in:
Xiong Neng 2018-09-15 16:00:54 +08:00
parent e656d466c2
commit 1bd4b4b40b
6 changed files with 8 additions and 53 deletions

View File

@ -26,20 +26,4 @@ logging:
ROOT: INFO ROOT: INFO
com: com:
xncoding: DEBUG xncoding: DEBUG
file: E:/logs/app.log file: D:/logs/app.log
---
#####################################################################
######################## 测试环境profile ##########################
#####################################################################
spring:
profiles: test
logging:
level:
ROOT: INFO
com:
xncoding: DEBUG
file: /var/logs/app.log

View File

@ -3,6 +3,8 @@
集成Swagger2自动生成API文档同时可转换成PDF格式 集成Swagger2自动生成API文档同时可转换成PDF格式
启动应用后访问http://localhost:9095/swagger-ui.html
## 许可证 ## 许可证
Copyright (c) 2018 Xiong Neng Copyright (c) 2018 Xiong Neng

View File

@ -72,12 +72,12 @@
<dependency> <dependency>
<groupId>io.springfox</groupId> <groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId> <artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version> <version>2.8.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.xncoding</groupId> <groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId> <artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version> <version>2.8.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.pegdown</groupId> <groupId>org.pegdown</groupId>

View File

@ -27,20 +27,4 @@ logging:
ROOT: INFO ROOT: INFO
com: com:
xncoding: DEBUG xncoding: DEBUG
file: E:/logs/app-api.log file: D:/logs/app-api.log
---
#####################################################################
######################## 测试环境profile ##########################
#####################################################################
spring:
profiles: test
logging:
level:
ROOT: INFO
com:
xncoding: DEBUG
file: /var/logs/app-api.log

View File

@ -1,15 +0,0 @@
package com.xncoding.jwt;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
/**
* 测试密码加密
*/
@RunWith(SpringRunner.class)
@SpringBootTest
public class ApplicationTests {
}

View File

@ -51,7 +51,7 @@ public class Swagger2MarkupTest {
* *
* 执行完成后生成PDF文件方法 * 执行完成后生成PDF文件方法
* *
* 首先在`build/swagger.adoc`的顶部加入 * 首先在`swagger/swagger.adoc`的顶部加入
``` ```
:toclevels: 3 :toclevels: 3
:numbered: :numbered: