Springboot继承swagger2

Posted 发挥哥

tags:

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

1、添加pom依赖(mvnrepository.com搜索springfox即可):

        <!-- 添加swagger相关依赖 -->
        <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>

Swagger2用于扫描程序生成接口文档。Swagger ui生成可视化的接口页面的。

2、启动类上添加@EnableSwagger2注解:

@EnableSwagger2

3、在Controller类上添加@Api注解,方法上添加@ApiOperation注解:

package cn.mmweikt.es.controller;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("test")
@Api("测试")
public class TestController {

    @GetMapping("test1")
    @ResponseBody
    @ApiOperation("测试方法")
    public String test(@ApiParam("用户id") Integer id){
        return "test1";
    }
}

@ApiOperation注解用来描述接口功能,最常用的属性是value。
参数,一部分是单个的,单个属性用@ApiParam;一部分是对象参数,对象参数的属性用@ApiModelProperty。

4、访问http://127.0.0.1:8080/swagger-ui.html验证:

以上是关于Springboot继承swagger2的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot框架 之 Swagger2

SpringBoot集成Swagger2在线文档

SpringBoot集成Swagger2生成API接口文档

SpringBoot集成Swagger2生成API接口文档

SpringBoot使用Swagger2实现Restful API

Swagger2springboot整合swagger2