首页 > 其他 > 详细

使用Swagger自动生成文档

时间:2019-06-24 00:38:18      阅读:122      评论:0      收藏:0      [点我收藏+]

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常用的注解

 

使用Swagger自动生成文档

原文:https://www.cnblogs.com/xy-ouyang/p/11074852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!