1.Swagger简介

1.1前后端分离发展历史

后端时代

前段只用管静态页面;html==>后端。模版引擎JSP=>后端是助理

前后端分离时代

后端:后端控制层,服务层,数据访问层次【后端团队】

前段:前端控制层,视图层【前段团队】。 伪造后端数据json已经存在了,不需要后端,前段工程依旧可以跑起来。

那么问题来了?

前后端如何交互?===》API

前后端相对独立,松耦合

前后端甚至可以部署在不同的服务器上

生产一个问题:

前后端集成联调,前后端人员无法做到“及时协商,尽早解决”,导致问题集中爆发。

首先指定一个schema,实时更新最新的api,降低集成风险。

早些年,制定word文档

前后端分离:前端测试后端接口:post; 后端提供接口,需要实时更新最新的消息以及改动

1.2Swagger产生

Swagger:

  • 号称世界上最流行的API框架
  • Restful Api文档在线自动生成工具=>API文档与API定义同步更新
  • 直接运行,在线测试API接口
  • 支持多种语言
  • 官网地址:https://swagger.io/

2. SpringBoot集成Swagger

2.1初步集成swagger

  1. 新建一个Springboot-web项目,编写一个hello工程

  2. 导入相关依赖

     1 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> 2 <dependency> 3   <groupId>io.springfox</groupId> 4   <artifactId>springfox-swagger2</artifactId> 5   <version>2.9.2</version> 6 </dependency> 7 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui --> 8 <dependency> 9   <groupId>io.springfox</groupId>10   <artifactId>springfox-swagger-ui</artifactId>11   <version>2.9.2</version>12 </dependency>
  3. 配置Swagger
    1 @Configuration //配置类2 @EnableSwagger2// 开启Swagger2的自动配置3 public class SwaggerConfig {4 }
  4. 测试运行 http://localhost:8080/swagger-ui.html ;包含四部分:Swagger信息 接口信息 实体信息 组
  5. 配置Swagger扫描接口
     1 package com.study.cloud.config; 2  3 import org.springframework.context.annotation.Bean; 4 import org.springframework.context.annotation.Configuration; 5 import org.springframework.context.annotation.Profile; 6 import org.springframework.core.env.Environment; 7 import org.springframework.core.env.Profiles; 8 import springfox.documentation.RequestHandler; 9 import springfox.documentation.builders.PathSelectors;10 import springfox.documentation.builders.RequestHandlerSelectors;11 import springfox.documentation.service.ApiInfo;12 import springfox.documentation.service.Contact;13 import springfox.documentation.spi.DocumentationType;14 import springfox.documentation.spring.web.plugins.Docket;15 import springfox.documentation.swagger2.annotations.EnableSwagger2;16 17 import java.util.ArrayList;18 19 @Configuration //配置类20 @EnableSwagger2// 开启Swagger2的自动配置21 public class SwaggerConfig {22     @Bean23     public Docket docket(Environment environment){24         Profiles profiles = Profiles.of("dev","test");25         boolean flag = environment.acceptsProfiles(profiles);26         return  new Docket(DocumentationType.SWAGGER_2)27                 .apiInfo(apiInfo())28                 .groupName("Cloud2022组")//分组名称不能有空格29                 .enable(flag)//通过enable()方法配置是否启用swagger,如果是false,swagger将不能在浏览器中访问了30                 .select()// 通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口31                     /*32                      any() // 扫描所有,项目中的所有接口都会被扫描到33                      none() // 不扫描接口34                      withMethodAnnotation(final Class annotation)// 通过方法上的注解扫描35                      withClassAnnotation(final Class annotation)// 通过类上的注解扫描,36                      basePackage(final String basePackage) // 根据包路径扫描接口;37                     */38                 .apis(RequestHandlerSelectors.any())39                 /*  any() // 任何请求都扫描40                     none() // 任何请求都不扫描41                     regex(final String pathRegex) // 通过正则表达式控制42                     ant(final String antPattern) // 通过ant()控制 * */43                 .paths(PathSelectors.ant("/**"))// // 配置如何通过path过滤,即这里只扫描请求以/kuang开头的接口44                 .build();45 46     }47     @Bean48     public Docket docketA( ){49         return  new Docket(DocumentationType.SWAGGER_2).groupName("A");50     }51     @Bean52     public Docket docketB( ){53         return  new Docket(DocumentationType.SWAGGER_2).groupName("B");54     }55     @Bean56     public Docket docketC( ){57         return  new Docket(DocumentationType.SWAGGER_2).groupName("C");58     }59     @Bean60     public Docket docketD( ){61         return  new Docket(DocumentationType.SWAGGER_2).groupName("D");62     }63 64     private ApiInfo apiInfo(){65         Contact contact = new Contact("gzm", "", "");66         return new ApiInfo("Cloud 2022 API文档"67                         , "描述:API文档描述!"68                         , "1.0"69                         , "urn:tos"70                         , contact71                         , "Apache 2.0"72                         , "http://www.apache.org/licenses/LICENSE-2.0"73                         , new ArrayList());74     }75 76 77 }
  6. @Api(tags = “xxx模块说明”)作用在模块类上
    @ApiOperation(“xxx接口说明”)作用在接口方法上
    @ApiModel(“xxxPOJO说明”)作用在模型类上:如VO、BO
    @ApiModelProperty(value = “xxx属性说明”,hidden = true)作用在类方法和属性上,hidden设置为true可以隐藏该属性@ApiParam(“xxx参数说明”)作用在参数、方法和字段上, 类似@ApiModelProperty

注意: 1.如果配置类所属的包不是启动类的同级或子级则需要在启动累上自己指定需要扫描对应路径,例如:@ComponentScan(“com.xxx.xxx.config”) 2. 多分组即配置多个Docket实例,名称不能有空格 3.swagger能不能扫描到提示 与有没有api注解无关, 只要返回值中有这个实例 就可以扫描到总结:

相较于传统的Postman或Curl方式测试接口,使用swagger简直就是傻瓜式操作,不需要额外说明文档(写得好本身就是文档)而且更不容易出错,只需要录入数据然后点击Execute,如果再配合自动化框架,可以说基本就不需要人为操作了。

Swagger是个优秀的工具,现在国内已经有很多的中小型互联网公司都在使用它,相较于传统的要先出Word接口文档再测试的方式,显然这样也更符合现在的快速迭代开发行情。当然了,提醒下大家在正式环境要记得关闭Swagger,一来出于安全考虑二来也可以节省运行时内存。