-
Notifications
You must be signed in to change notification settings - Fork 1
07 springfox swagger2
Alan edited this page Apr 12, 2018
·
9 revisions

Spring Cloud程序快速接入SpringFox-swagger2
- pom.xml中添加依赖
<!-- swagger -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-bean-validators</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.8.0</version>
</dependency>
-
和Application配置启动类同级添加Swagger配置类 参考代码
需要根据实际情况修改的代码:
.apis(RequestHandlerSelectors.basePackage("com.demo.controller"))// 扫描该包下的所有需要在Swagger中展示的API,@ApiIgnore注解标注的除外
- 文档注解使用参考
默认情况下,每个微服务暴露的端口下,都会对外提供api访问(http:${host}:${port}/swagger-ui.html);也会对外提供json格式的openapi spec访问地址(http:${host}:${port}/v2/resource).
这种情况在服务众多的情况下就是个灾难........,虽然swagger-ui可以通过查询openapi spec地址的方式进行显示,但是如果将spec导出那么代码和api又分离了,有违初衷.
所以开发了swaggerui-eureka,因为所有微服务都是注册在 eureka上面,且api的地址是有规律可循的,即获取[]微服务实例uri+/swagger-ui.html]即可获取实时的所有在开发/测试环境的api. 如图:(承认较丑,前端有几年没写了,有时间则修好看点....)
