Gin + Swagger快速生成API文档

语言: CN / TW / HK

小知识,大挑战!本文正在参与「程序员必备小知识」创作活动。

本文已参与 「掘力星计划」 ,赢取创作大礼包,挑战创作激励金。

一 背景

在restful前后端项目进行接口对接的时候,需要有明确的接口文档,此时单独针对接口编写接口文档,耗时耗力,切代码修改后,还需要维护接口文档,此时容易出现文档不统一的情况,将接口文档直接写在代码中是一种比较好的方式。

swagger就是解决这种问题,开发人员只需要按照特定规范在编写接口代码时写上swagger注释,利用swagger生成接口文档。

二 Swagger UI简介

Swagger 是一个 API 生成工具,可以生成文档。 Swagger 是通过编写 yamljson 来实现文档化。并且可以进行测试等工作。

通过 swagger 可以方便的生成接口文档,方便前端进行查看和测试。

三 项目集成

3.1 安装swag

shell $ go get github.com/swaggo/swag/cmd/swag

3.2 生成文件

首次生成相关文件,后期代码修改过,添加swag注解后,也需要

```shell

在go 项目中(包含main.go)的目录,使用swag init命令生成相关文件。

$ swag init 2021/09/23 16:32:23 Generate swagger docs.... 2021/09/23 16:32:23 Generate general API Info, search dir:./ 2021/09/23 16:32:26 create docs.go at docs/docs.go 2021/09/23 16:32:26 create swagger.json at docs/swagger.json 2021/09/23 16:32:26 create swagger.yaml at docs/swagger.yaml

```

3.3 安装gin-swagger

shell $ go get -u github.com/swaggo/gin-swagger $ go get -u github.com/swaggo/gin-swagger/swaggerFiles

3.4 集成

  • 引入生成的docs包
  • 在具体接口上根据规范swag编写接口描述
  • 在路由中进行引入
  • 再次执行swag init 更新接口
  • 运行应用后,浏览器访问:http://localhost:8887/swagger/index.html

```shell package main

import ( "github.com/gin-gonic/gin" swaggerFiles "github.com/swaggo/files" ginSwagger "github.com/swaggo/gin-swagger"

_ "github.com/swaggo/gin-swagger/example/basic/docs" // docs is generated by Swag CLI, you have to import it.

)

// @title Swagger Example API // @version 1.0 // @description This is a sample server Petstore server. // @termsOfService http://swagger.io/terms/

// @contact.name API Support // @contact.url http://www.swagger.io/support // @contact.email [email protected]

// @license.name Apache 2.0 // @license.url http://www.apache.org/licenses/LICENSE-2.0.html

// @host petstore.swagger.io // @BasePath /v2 func main() { r := gin.New()

url := ginSwagger.URL("http://localhost:8080/swagger/doc.json") // The url pointing to API definition
r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler, url))

r.Run()

} ```

四 不同类型

4.1 请求

4.1.1 url参数

go // @Param id path int true "ID" //url参数:(name;参数类型[query(?id=),path(/123)];数据类型;required;参数描述)

4.1.2 body参数

例如json

go // @Param data body models.RegistryAuth true "请示参数data"

4.2 返回

4.2.1 字符串

// @Success 200 {string} json "{"msg":"ok"}"

4.2.2 结构体返回

// @Success 200 {object} models.Response "请求成功" // @Failure 400 {object} models.ResponseErr "请求错误" // @Failure 500 {object} models.ResponseErr "内部错误"

五 实战

5.1 main函数添加全局

```go // @title smartkm_api_image Swagger Example // @version 1.0 // @description This is a sample server Petstore server. // @termsOfService http://swagger.io/terms/

// @contact.name API Support // @contact.url http://www.swagger.io/support // @contact.email [email protected]

// @license.name Apache 2.0 // @license.url http://www.apache.org/licenses/LICENSE-2.0.html

// @host petstore.swagger.io // @BasePath / func main() { // 启动服务 run() }

```

5.2 函数级别

5.2.1 Get请求

go // @Summary 查看迁移任务详细信息 // @Description 查看迁移任务详细信息 // @Accept json // @Produce json // @Param task_id path string true "task_id" // @Success 200 {object} models.Response "请求成功" // @Failure 400 {object} models.ResponseErr "请求错误" // @Failure 500 {object} models.ResponseErr "内部错误" // @Router /task [get]

5.2.2 Post请求

go // @Summary 创建镜像迁移任务 // @Description 创建镜像迁移任务 // @Accept json // @Produce json // @Param data body models.CreateTaskReq true "请示参数data" // @Success 200 {object} models.Response "请求成功" // @Failure 400 {object} models.ResponseErr "请求错误" // @Failure 500 {object} models.ResponseErr "内部错误" // @Router /task [post]

5.2.3 Delete请求

go // @Summary 删除镜像迁移任务 // @Description 删除镜像迁移任务 // @Accept json // @Produce json // @Param data body models.TaskReq true "请示参数data" // @Success 200 {object} models.Response "请求成功" // @Failure 400 {object} models.ResponseErr "请求错误" // @Failure 500 {object} models.ResponseErr "内部错误" // @Router /task [delete]

注意事项

  • 在路由添加swagger的时候,需要引入项目生成的docs包
  • 假如func方法头标注的swagger注释不正确,在执行swag init会报错,自行根据报错信息去修改;
  • 访问swagger控制台报错404 page not found,是因为没有添加swagger的路由
  • 访问swagger控制台报错Failed to load spec,是因为没有import引入执行swag init生成的swagger的docs文件夹;

参考链接

  • http://studygolang.com/articles/12354
  • http://github.com/go-swagger/go-swagger
  • http://github.com/swaggo/gin-swagger