木心

毕竟几人真得鹿,不知终日梦为鱼

导航

使用Swagger自动生成文档

1、maven依赖

  maven仓库(https://mvnrepository.com/)搜索springfox

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

 

2、springboot集成swagger2

  1)创建一个springboot项目,pom.xml引入上面贴出的两个依赖jar;

  2)在springboot启动类上加注解@EnableSwagger2;

  3)启动项目,在浏览器输入localhost:8081/swagger-ui.html。

 

3、swagger2常用的注解

 

posted on 2019-06-23 23:13  wenbin_ouyang  阅读(467)  评论(0编辑  收藏  举报