SpringBoot整合Swagger-UI接口文档

张春  金牌会员 | 2025-3-20 14:42:51 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 982|帖子 982|积分 2946

SpringBoot整合Swagger-UI接口文档

Swagger-UI好处


  • Swagger-UI   一个好看又好用的项目接口文档,可以动态地根据注解生成在线API文档。也就是说和你代码的Controller层的接口方法对应,支持在线接口测试,不依赖第三方工具
Swagger-UI常用注解先容

@Api:用于修饰Controller类,生成Controller相干文档信息
@ApiOperation:用于修饰Controller类中的方法,生成接口方法相干文档信息
@ApiParam:用于修饰接口中的参数,生成接口参数相干文档信息
@ApiModelProperty:用于修饰实体类的属性,当实体类是请求参数或返回结果时,直接生成相干文档信息
整合步骤

1、maven中添加依赖
  1.    
  2.     <dependency>
  3.       <groupId>io.springfox</groupId>
  4.       <artifactId>springfox-swagger2</artifactId>
  5.       <version>2.7.0</version>
  6.     </dependency>
  7.     <dependency>
  8.       <groupId>io.springfox</groupId>
  9.       <artifactId>springfox-swagger-ui</artifactId>
  10.       <version>2.7.0</version>
  11.     </dependency>
复制代码
2、项目中添加Swagger-UI配置类

这里参考github上mall项目的配置类
  1. package com.macro.mall.tiny.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import springfox.documentation.builders.ApiInfoBuilder;
  5. import springfox.documentation.builders.PathSelectors;
  6. import springfox.documentation.builders.RequestHandlerSelectors;
  7. import springfox.documentation.service.ApiInfo;
  8. import springfox.documentation.spi.DocumentationType;
  9. import springfox.documentation.spring.web.plugins.Docket;
  10. import springfox.documentation.swagger2.annotations.EnableSwagger2;
  11. /**
  12. * Swagger2API文档的配置
  13. */
  14. @Configuration
  15. @EnableSwagger2
  16. public class Swagger2Config {
  17.     @Bean
  18.     public Docket createRestApi(){
  19.         return new Docket(DocumentationType.SWAGGER_2)
  20.                 .apiInfo(apiInfo())
  21.                 .select()
  22.                 //为当前包下controller生成API文档
  23.                 .apis(RequestHandlerSelectors.basePackage("com.macro.mall.tiny.controller"))
  24.                 //为有@Api注解的Controller生成API文档
  25.                 .apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
  26.                 //为有@ApiOperation注解的方法生成API文档
  27.                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
  28.                 .paths(PathSelectors.any())
  29.                 .build();
  30.     }
  31.     private ApiInfo apiInfo() {
  32.         return new ApiInfoBuilder()
  33.                 .title("SwaggerUI文档")   
  34.                 .description("某某某商城项目/系统后台所有接口文档")
  35.                 .contact("macro")
  36.                 .version("版本号1.0")
  37.                 .build();
  38.     }
  39. }
复制代码
3、配合注解使用

在你要生成接口文档的Controller层的Class类上面添加@Api(tags = "msBrandController", description = "商品品牌管理")方法上面添加@ApiOperation("获取全部品牌列表")注解

4、检察结果

访问接口文档地址接口地址:http://localhost:8086/swagger-ui.html 检察结果
留意换成自己项目的端标语(application.yml中检察大概设置springboot项目端口),我这里使用的是8086端

参考:https://github.com/macrozheng/mall

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

张春

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表