当前位置:   article > 正文

Springboot——Swagger_com.itcodai.course06.controller

com.itcodai.course06.controller

Swagger2 的 maven 依赖

使用 Swagger2 工具,必须要导入 maven 依赖,当前官方最高版本是 2.8.0,我尝试了一下,个人感觉页面展示的效果不太好,而且不够紧凑,不利于操作。另外,最新版本并不一定是最稳定版本,当前我们实际项目中使用的是 2.2.2 版本,该版本稳定,界面友好,所以本节课主要围绕着 2.2.2 版本来展开,依赖如下:

  1. <dependency>
  2. <groupId>io.springfox</groupId>
  3. <artifactId>springfox-swagger2</artifactId>
  4. <version>2.2.2</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>io.springfox</groupId>
  8. <artifactId>springfox-swagger-ui</artifactId>
  9. <version>2.2.2</version>
  10. </dependency>

Swagger2 的配置

使用 Swagger2 需要进行配置,Spring Boot 中对 Swagger2 的配置非常方便,新建一个配置类,Swagger2 的配置类上除了添加必要的 @Configuration 注解外,还需要添加 @EnableSwagger2 注解。

  1. import org.springframework.context.annotation.Bean;
  2. import org.springframework.context.annotation.Configuration;
  3. import springfox.documentation.builders.ApiInfoBuilder;
  4. import springfox.documentation.builders.PathSelectors;
  5. import springfox.documentation.builders.RequestHandlerSelectors;
  6. import springfox.documentation.service.ApiInfo;
  7. import springfox.documentation.spi.DocumentationType;
  8. import springfox.documentation.spring.web.plugins.Docket;
  9. import springfox.documentation.swagger2.annotations.EnableSwagger2;
  10. /**
  11. * @author shengwu ni
  12. */
  13. @Configuration
  14. @EnableSwagger2
  15. public class SwaggerConfig {
  16. @Bean
  17. public Docket createRestApi() {
  18. return new Docket(DocumentationType.SWAGGER_2)
  19. // 指定构建api文档的详细信息的方法:apiInfo()
  20. .apiInfo(apiInfo())
  21. .select()
  22. // 指定要生成api接口的包路径,这里把controller作为包路径,生成controller中的所有接口
  23. .apis(RequestHandlerSelectors.basePackage("com.itcodai.course06.controller"))
  24. .paths(PathSelectors.any())
  25. .build();
  26. }
  27. /**
  28. * 构建api文档的详细信息
  29. * @return
  30. */
  31. private ApiInfo apiInfo() {
  32. return new ApiInfoBuilder()
  33. // 设置页面标题
  34. .title("Spring Boot集成Swagger2接口总览")
  35. // 设置接口描述
  36. .description("跟武哥一起学Spring Boot第06课")
  37. // 设置联系方式
  38. .contact("倪升武," + "CSDN:http://blog.csdn.net/eson_15")
  39. // 设置版本
  40. .version("1.0")
  41. // 构建
  42. .build();
  43. }
  44. }

在该配置类中,已经使用注释详细解释了每个方法的作用了,在此不再赘述。到此为止,我们已经配置好了 Swagger2 了。现在我们可以测试一下配置有没有生效,启动项目,在浏览器中输入 localhost:8080/swagger-ui.html,即可看到 swagger2 的接口页面,如下图所示,说明Swagger2 集成成功。

Swagger2 的使用

上面我们已经配置好了 Swagger2,并且也启动测试了一下,功能正常,下面我们开始使用 Swagger2,主要来介绍 Swagger2 中的几个常用的注解,分别在实体类上、 Controller 类上以及 Controller 中的方法上,最后我们看一下 Swagger2 是如何在页面上呈现在线接口文档的,并且结合 Controller 中的方法在接口中测试一下数据。

1、实体类注解

本节我们建一个 User 实体类,主要介绍一下 Swagger2 中的 @ApiModel 和 @ApiModelProperty 注解,同时为后面的测试做准备。

  1. import io.swagger.annotations.ApiModel;
  2. import io.swagger.annotations.ApiModelProperty;
  3. @ApiModel(value = "用户实体类")
  4. public class User {
  5. @ApiModelProperty(value = "用户唯一标识")
  6. private Long id;
  7. @ApiModelProperty(value = "用户姓名")
  8. private String username;
  9. @ApiModelProperty(value = "用户密码")
  10. private String password;
  11. // 省略set和get方法
  12. }

解释下 @ApiModel 和 @ApiModelProperty 注解:

@ApiModel 注解用于实体类,表示对类进行说明,用于参数用实体类接收。

@ApiModelProperty 注解用于类中属性,表示对 model 属性的说明或者数据操作更改。

2、Controller 类中相关注解

我们写一个 TestController,再写几个接口,然后学习一下 Controller 中和 Swagger2 相关的注解。

  1. import com.itcodai.course06.entiy.JsonResult;
  2. import com.itcodai.course06.entiy.User;
  3. import io.swagger.annotations.Api;
  4. import io.swagger.annotations.ApiOperation;
  5. import io.swagger.annotations.ApiParam;
  6. import org.springframework.web.bind.annotation.GetMapping;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. @RestController
  11. @RequestMapping("/swagger")
  12. @Api(value = "Swagger2 在线接口文档")
  13. public class TestController {
  14. @GetMapping("/get/{id}")
  15. @ApiOperation(value = "根据用户唯一标识获取用户信息")
  16. public JsonResult<User> getUserInfo(@PathVariable @ApiParam(value = "用户唯一标识") Long id) {
  17. // 模拟数据库中根据id获取User信息
  18. User user = new User(id, "倪升武", "123456");
  19. return new JsonResult(user);
  20. }
  21. }

我们来学习一下 @Api 、 @ApiOperation 和 @ApiParam 注解:

@Api 注解用于类上,表示标识这个类是 swagger 的资源。

@ApiOperation 注解用于方法,表示一个 http 请求的操作。

@ApiParam 注解用于参数上,用来标明参数信息。

这里返回的是 JsonResult,是第02课中学习返回 json 数据时封装的实体。以上是 Swagger 中最常用的 5 个注解,接下来运行一下项目工程,在浏览器中输入 localhost:8080/swagger-ui.html 看一下 Swagger 页面的接口状态。

可以看出,Swagger 页面对该接口的信息展示的非常全面,每个注解的作用以及展示的地方在上图中已经标明,通过页面即可知道该接口的所有信息,那么我们直接在线测试一下该接口返回的信息,输入id为1,看一下返回数据:

可以看出,直接在页面返回了 json 格式的数据,开发人员可以直接使用该在线接口来测试数据的正确与否,非常方便。上面是对于单个参数的输入,如果输入参数为某个对象这种情况,Swagger 是什么样子呢?我们再写一个接口。

  1. @PostMapping("/insert")
  2. @ApiOperation(value = "添加用户信息")
  3. public JsonResult<Void> insertUser(@RequestBody @ApiParam(value = "用户信息") User user) {
  4. // 处理添加逻辑
  5. return new JsonResult<>();
  6. }

重启项目,在浏览器中输入 localhost:8080/swagger-ui.html 看一下效果:

5. 总结

OK,本节课详细分析了 Swagger 的优点,以及 Spring Boot 如何集成 Swagger2,包括配置,相关注解的讲解,涉及到了实体类和接口类,以及如何使用。最后通过页面测试,体验了 Swagger 的强大之处,基本上是每个项目组中必备的工具之一,所以要掌握该工具的使用,也不难。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/939817
推荐阅读
相关标签
  

闽ICP备14008679号