天天看点

如何利用Swagger-UI自动生成接口文档?

一、常用注解

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

@Api:用于修饰Controller类,生成Controller相关文档信息

@ApiOperation:用于修饰Controller类中的方法,生成接口方法相关文档信息

@ApiModel:用于修饰接口中的参数,生成接口参数相关文档信息

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

二、 添加依赖

<!--Swagger-UI API文档生产工具-->
<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-swagger2</artifactId>
  <version>2.7.0</version>
</dependency>
<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-swagger-ui</artifactId>
  <version>2.7.0</version>
</dependency>

           

三、编写配置代码

package com.smy.ouyangsong.config;

import org.springframework.context.annotation.Bean;
import org.springframework.boot.SpringBootConfiguration;
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;

/**
 * Swagger2API文档的配置
 */
@SpringBootConfiguration
@EnableSwagger2
public class Swagger2Config {
    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                //为当前包下controller生成API文档
                .apis(RequestHandlerSelectors.basePackage("com.smy.ouyangsong.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("smy接口文档")
                .description("Testing")
                .contact("ouyangsong")
                .version("1.0")
                .build();
    }
}

           

四、使用注解

  • 给UsersController添加@Api(“操作user表”)注解
    如何利用Swagger-UI自动生成接口文档?
  • 给usersController下的方法添加@ApiOperation注解
    如何利用Swagger-UI自动生成接口文档?
  • 给model类添加@ApiModel注解,给属性添加@ApiModelProperty注解
    如何利用Swagger-UI自动生成接口文档?

五、实现效果

  • url:域名+端口+swagger-ui.html
    如何利用Swagger-UI自动生成接口文档?