Swagger-UI

Posted b-rabbit

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swagger-UI相关的知识,希望对你有一定的参考价值。

一、Swagger-UI 介绍

Swagger-UI是html, javascript, CSS的一个集合,可以动态地根据注解生成在线API文档。

二、与springboot整合使用

1、meven依赖

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.7.0</version>
</dependency>

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

2、常用注解

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

3、编写config类

package com.example.wholepro.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

/**
 * @author 会飞的大野鸡
 * @create 2020/3/6
 * TODO:
 */

@Configuration
@EnableSwagger2
public class Swagger2Config {
    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
//为当前包下controller生成API文档
                .apis(RequestHandlerSelectors.basePackage("com.example.wholepro.controller"))
//为有@Api注解的Controller生成API文档
//              .apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
//为有@ApiOperation注解的方法生成API文档
//              .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("SwaggerUI演示")
                .description("wholepro")
                .contact("hack")
                .version("1.0")
                .build();
    }}

4、实例与演示

技术图片
技术图片

三、总结

swagger-UI是一个十分好用的框架,他可以让接口一目了然,并可以实时的进行接口测试等工作。十分方便高效。


以上是关于Swagger-UI的主要内容,如果未能解决你的问题,请参考以下文章

如何更改 swagger-ui.html 默认路径

Swagger-UI 和 Ktor 如何导入 swagger.json 或 .yaml 文件并启动 Swagger-UI?

Swagger-UI

SpringBoot整合Swagger-ui快速生成在线API文档

为啥 swagger-ui 没有主题? [关闭]

做了一个swagger-ui的主题(theme)