Spring Boot 快速整合Swagger

Posted 江成军

tags:

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

一、前言

Spring Boot作为当前最为流行的Java web开发脚手架,越来越多的开发者选择用其来构建企业级的RESTFul API接口。这些接口不但会服务于传统的web端(b/s),也会服务于移动端。在实际开发过程中,这些接口还要提供给开发测试进行相关的白盒测试,那么势必存在如何在多人协作中共享和及时更新API开发接口文档的问题。

使用 Swagger 集成文档具有以下几个优势:

  • 功能丰富 :支持多种注解,自动生成接口文档界面,支持在界面测试API接口功能;
  • 及时更新 :开发过程中花一点写注释的时间,就可以及时的更新API文档,省心省力;
  • 整合简单 :通过添加pom依赖和简单配置,内嵌于应用中就可同时发布API接口文档界面,不需要部署独立服务。

接下来,我们通过Spring Boot来整合Swagger实现在线API文档的功能,本文用的是SpringFox Swagger2,版本2.9.2(最新版本是3.0.0,但是在我测试是swagger-ui.html页面一直出不来,在https://mvnrepository.com/上也可以看到,2.9.2是目前使用最多的版本)

二、创建Spring Boot工程

我用的开发工具是IDEA,通过IDEA快速创建一个Spring Boot工程,创建时,只需勾选web依赖选项就成,不勾选也没关系,后面在pom.xml中配置也是一样的。注意创建工程时,工程名称都要是小写。

添加Swagger的两个依赖

<!-- swagger -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

三、添加配置类

添加一个swagger 配置类,在工程下新建 config 包并添加一个 SwaggerConfig 配置类SwaggerConfig.java。

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;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@Configuration
@EnableSwagger2
public class SwaggerConfig {

    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.any())
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo(){
        return new ApiInfoBuilder()
                .title("在线API文档")
                .description("This is a restful api document of demo")
                .version("1.0")
                .build();
    }

}

以上就已经完成了Swagger的配置,是不是很简洁轻松。

四、创建一个测试Controller来验证配置

添加一个控制器,在工程下新建 controller包并添加一个 HelloController控制器HelloController.java。

package com.louis.springboot.demo.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;

/* 类注解 */
@Api
@RestController
public class HelloController {

    /* 方法注解 */
    @ApiOperation(value = "desc of method", notes = "")
    @GetMapping(value="/hello")
    public Object hello( @ApiParam(value = "desc of param" , required=true ) @RequestParam String name) {
        return "Hello " + name + "!";
    }
}

五、编译运行测试

启动工程, 打开浏览器,访问:http://localhost:8080/swagger-ui.html,进入swagger接口文档界面。

完毕收工,这样管理API接口很方便,并且是和代码实时更新的,不用烦心再去写接口文档啦。

附录:Swagger常用注解

API 使用位置
@Api 用于controller类上,表示标识这个类是swagger的资源
@ApiOperation 用在controller的方法上,表示一个http请求的操作
@ApiParam 方法中的参数注释
@ApiResponses 用在controller的方法上
@ApiResponse 用在 @ApiResponses里边
@ApiImplicitParams 用在controller的方法上
@ApiImplicitParam 用在@ApiImplicitParams的方法里边
@ApiModel 用在返回对象类上

WEB项目开发中碰到的问题千奇百怪,大家想了解对如何快速的掌握Spring Boot,可以参见视频:

51CTO:Spring Boot+Bootstrap开发小而完整web项目
腾讯课堂:Spring Boot+Bootstrap开发小而完整web项目
CSDN学院:Spring Boot+Bootstrap开发小而完整web项目
网易云课堂:Spring Boot+Bootstrap开发小而完整web项目

Spring Boot整合Swagger2构建RESTful API

Swagger是一款可以快速生成符合RESTful风格API并进行在线调试的插件。本文将介绍如何在Spring Boot中整合Swagger。

在此之前,我们先聊聊什么是REST。REST实际上为Representational State Transfer的缩写,翻译为“表现层状态转化” 。如果一个架构符合REST 原则,就称它为RESTful架构。

实际上,“表现层状态转化”省略了主语,完整的说应该是“资源表现层状态转化”。什么是资源(Resource)?资源指的是网络中信息的表现形式,比如一段文本,一首歌,一个视频文件等等;什么是表现层(Reresentational)?表现层即资源的展现在你面前的形式,比如文本可以是JSON格式的,也可以是XML形式的,甚至为二进制形式的。图片可以是gif,也可以是PNG;什么是状态转换(State Transfer)?用户可使用URL通过HTTP协议来获取各种资源,HTTP协议包含了一些操作资源的方法,比如:GET 用来获取资源, POST 用来新建资源 , PUT 用来更新资源, DELETE 用来删除资源, PATCH 用来更新资源的部分属性。通过这些HTTP协议的方法来操作资源的过程即为状态转换。

下面对比下传统URL请求和RESTful风格请求的区别:

描述传统请求方法RESTful请求方法
查询 /user/query?name=mrbird GET /user?name=mrbird GET
详情 /user/getInfo?id=1 GET /user/1 GET
创建 /user/create?name=mrbird POST /user POST
修改 /user/update?name=mrbird&id=1 POST /user/1 PUT
删除 /user/delete?id=1 GET /user/1 DELETE

从上面这张表,我们大致可以总结下传统请求和RESTful请求的几个区别:

  1. 传统请求通过URL来描述行为,如create,delete等;RESTful请求通过URL来描述资源。

  2. RESTful请求通过HTTP请求的方法来描述行为,比如DELETE,POST,PUT等,并且使用HTTP状态码来表示不同的结果。

  3. RESTful请求通过JSON来交换数据。

RESTful只是一种风格,并不是一种强制性的标准。

引入Swagger依赖

本文使用的Swagger版本为2.6.1:

<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-swagger2</artifactId>
  <version>2.6.1</version>
</dependency>
<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-swagger-ui</artifactId>
  <version>2.6.1</version>
</dependency>

 

配置SwaggerConfig

使用JavaConfig的形式配置Swagger:

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.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
?
@Configuration
@EnableSwagger2
public class SwaggerConfig
  @Bean
  public Docket buildDocket()
      return new Docket(DocumentationType.SWAGGER_2)
          .apiInfo(buildApiInf())
          .select()
          .apis(RequestHandlerSelectors.basePackage("com.example.demo.controller"))
          .paths(PathSelectors.any())
          .build();
 
  private ApiInfo buildApiInf()
      return new ApiInfoBuilder()
          .title("系统RESTful API文档")
          .contact(new Contact("mrbird", "https://mrbird.cc", "852252810@qq.com"))
          .version("1.0")
          .build();
 

 

在配置类中添加@EnableSwagger2注解来启用Swagger2,apis()定义了扫描的包路径。配置较为简单,其他不做过多说明。

Swagger常用注解

  • @Api:修饰整个类,描述Controller的作用;

  • @ApiOperation:描述一个类的一个方法,或者说一个接口;

  • @ApiParam:单个参数描述;

  • @ApiModel:用对象来接收参数;

  • @ApiProperty:用对象接收参数时,描述对象的一个字段;

  • @ApiResponse:HTTP响应其中1个描述;

  • @ApiResponses:HTTP响应整体描述;

  • @ApiIgnore:使用该注解忽略这个API;

  • @ApiError :发生错误返回的信息;

  • @ApiImplicitParam:一个请求参数;

  • @ApiImplicitParams:多个请求参数。

编写RESTful API接口

Spring Boot中包含了一些注解,对应于HTTP协议中的方法:

  • @GetMapping对应HTTP中的GET方法;

  • @PostMapping对应HTTP中的POST方法;

  • @PutMapping对应HTTP中的PUT方法;

  • @DeleteMapping对应HTTP中的DELETE方法;

  • @PatchMapping对应HTTP中的PATCH方法。

我们使用这些注解来编写一个RESTful测试Controller:

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
?
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
?
import com.example.demo.domain.User;
?
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import springfox.documentation.annotations.ApiIgnore;
?
@Api(value = "用户Controller")
@Controller
@RequestMapping("user")
public class UserController
?
  @ApiIgnore
  @GetMapping("hello")
  public @ResponseBody String hello()
      return "hello";
 
?
  @ApiOperation(value = "获取用户信息", notes = "根据用户id获取用户信息")
  @ApiImplicitParam(name = "id", value = "用户id", required = true, dataType = "Long", paramType = "path")
  @GetMapping("/id")
  public @ResponseBody User getUserById(@PathVariable(value = "id") Long id)
      User user = new User();
      user.setId(id);
      user.setName("mrbird");
      user.setAge(25);
      return user;
 
?
  @ApiOperation(value = "获取用户列表", notes = "获取用户列表")
  @GetMapping("/list")
  public @ResponseBody List<User> getUserList()
      List<User> list = new ArrayList<>();
      User user1 = new User();
      user1.setId(1l);
      user1.setName("mrbird");
      user1.setAge(25);
      list.add(user1);
      User user2 = new User();
      user2.setId(2l);
      user2.setName("scott");
      user2.setAge(29);
      list.add(user2);
      return list;
 
?
  @ApiOperation(value = "新增用户", notes = "根据用户实体创建用户")
  @ApiImplicitParam(name = "user", value = "用户实体", required = true, dataType = "User")
  @PostMapping("/add")
  public @ResponseBody Map<String, Object> addUser(@RequestBody User user)
      Map<String, Object> map = new HashMap<>();
      map.put("result", "success");
      return map;
 
?
  @ApiOperation(value = "删除用户", notes = "根据用户id删除用户")
  @ApiImplicitParam(name = "id", value = "用户id", required = true, dataType = "Long", paramType = "path")
  @DeleteMapping("/id")
  public @ResponseBody Map<String, Object> deleteUser(@PathVariable(value = "id") Long id)
      Map<String, Object> map = new HashMap<>();
      map.put("result", "success");
      return map;
 
?
  @ApiOperation(value = "更新用户", notes = "根据用户id更新用户")
  @ApiImplicitParams(
      @ApiImplicitParam(name = "id", value = "用户id", required = true, dataType = "Long", paramType = "path"),
      @ApiImplicitParam(name = "user", value = "用户实体", required = true, dataType = "User") )
  @PutMapping("/id")
  public @ResponseBody Map<String, Object> updateUser(@PathVariable(value = "id") Long id, @RequestBody User user)
      Map<String, Object> map = new HashMap<>();
      map.put("result", "success");
      return map;
 
?

 

对于不需要生成API的方法或者类,只需要在上面添加@ApiIgnore注解即可。

以上是关于Spring Boot 快速整合Swagger的主要内容,如果未能解决你的问题,请参考以下文章

spring boot整合swagger ui (RESTFUL接口的文档在线自动生成+功能测试功能软件,前后端分离快速开发)

Spring Boot之Swagger2集成

spring boot整合swagger有啥好处

Swagger Learing - Spring Boot 整合swagger

Spring boot整合Swagger

spring boot整合swagger