zoukankan      html  css  js  c++  java
  • Spring Boot 配置 Swagger2 接口文档引擎

    Spring Boot 配置 Swagger2 接口文档引擎

    Maven

    增加 Swagger2 所需依赖,pom.xml 配置如下:
    <!-- Swagger2 Begin -->
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger2</artifactId>
        <version>2.8.0</version>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger-ui</artifactId>
        <version>2.8.0</version>
    </dependency>
    <!-- Swagger2 End -->
    

    配置 Swagger2

    注意:RequestHandlerSelectors.basePackage("com.funtl.itoken.service.admin.controller") 为 Controller 包路径,不然生成的文档扫描不到接口
    创建一个名为 Swagger2Config 的 Java 配置类,代码如下:
    package org.faramita.itoken.service.posts.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;
    
    @Configuration
    public class Swagger2Config {
        @Bean
        public Docket createRestApi() {
            return new Docket(DocumentationType.SWAGGER_2)
                    .apiInfo(apiInfo())
                    .select()
                    .apis(RequestHandlerSelectors.basePackage("org.faramita.itoken.service.posts.controller"))
                    .paths(PathSelectors.any())
                    .build();
        }
    
        private ApiInfo apiInfo() {
            return new ApiInfoBuilder()
                    .title("iToken API 文档")
                    .description("iToken API 网关接口,http://www.funtl.com")
                    .termsOfServiceUrl("http://www.faramita.online")
                    .version("1.0.0")
                    .build();
        }
    }
    

    启用 Swagger2

    Application 中加上注解 @EnableSwagger2 表示开启 Swagger
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    import springfox.documentation.swagger2.annotations.EnableSwagger2;
    import tk.mybatis.spring.annotation.MapperScan;
    @EnableSwagger2
    @SpringBootApplication(scanBasePackages = "org.faramita.itoken")
    @EnableEurekaClient
    @MapperScan(basePackages = {"org.faramita.itoken.common.mapper", "org.faramita.itoken.service.posts.mapper"})
    public class ServicePostsApplication {
        public static void main(String[] args) {
            SpringApplication.run(ServicePostsApplication.class,args);
        }
    }
    

    使用 Swagger2

    在 Controller 中增加 Swagger2 相关注解,代码如下:
       /**
         * 分页查询
         *
         * @param pageNum
         * @param pageSize
         * @param tbPostsPostJson
         * @return
         */
       @ApiOperation(value = "文章服务分页查询接口")
        @ApiImplicitParams({
                @ApiImplicitParam(name = "pageNum", value = "页码", required = true, dataType = "int", paramType = "path"),
                @ApiImplicitParam(name = "pageSize", value = "笔数", required = true, dataType = "int", paramType = "path"),
                @ApiImplicitParam(name = "tbPostsPostJson", value = "对象 JSON 格式", required = false, dataTypeClass = String.class, paramType = "json")
        })
        @RequestMapping(value = "page/{pageNum}/{pageSize}", method = RequestMethod.GET)
        public BaseResult page(
                @PathVariable(required = true) int pageNum,
                @PathVariable(required = true) int pageSize,
                @RequestParam(required = false) String tbPostsPostJson
        ) throws Exception {
    
            TbPostsPost tbPostsPost = null;
            if (StringUtils.isNotBlank(tbPostsPostJson)) {
                tbPostsPost = MapperUtils.json2pojo(tbPostsPostJson, TbPostsPost.class);
            }
    
            PageInfo pageInfo = postsService.page(pageNum, pageSize, tbPostsPost);
    
            // 分页后的结果集
            List<TbPostsPost> list = pageInfo.getList();
    
            // 封装 Cursor 对象
            BaseResult.Cursor cursor = new BaseResult.Cursor();
            cursor.setTotal(new Long(pageInfo.getTotal()).intValue());
            cursor.setOffset(pageInfo.getPageNum());
            cursor.setLimit(pageInfo.getPageSize());
    
            return BaseResult.ok(list, cursor);
        }
    

    Swagger 注解说明

    Swagger 通过注解表明该接口会生成文档,包括接口名、请求方法、参数、返回信息的等等。
    • @Api:修饰整个类,描述 Controller 的作用
    • @ApiOperation:描述一个类的一个方法,或者说一个接口
    • @ApiParam:单个参数描述
    • @ApiModel:用对象来接收参数
    • @ApiProperty:用对象接收参数时,描述对象的一个字段
    • @ApiResponse:HTTP 响应其中 1 个描述
    • @ApiResponses:HTTP 响应整体描述
    • @ApiIgnore:使用该注解忽略这个API
    • @ApiError:发生错误返回的信息
    • @ApiImplicitParam:一个请求参数
    • @ApiImplicitParams:多个请求参数
    访问 Swagger2

    访问地址:http://ip:port/swagger-ui.html

  • 相关阅读:
    Go 交叉编译
    go module 基本使用
    win10中安装Linux子系统
    VsCode/Pycharm配合python env 使用
    python virtualenv 基本使用
    Django 知识点小记
    Django中一种常见的setting与账密保存/读取方式
    win安装python模块出现依赖问题的解决方法 & No module named 'MySqldb'
    MySQL数据库文件
    如何在MySQL中分配innodb_buffer_pool_size
  • 原文地址:https://www.cnblogs.com/faramita/p/11306028.html
Copyright © 2011-2022 走看看