所以我不是 swagger 专家,但所有使用 swagger 的系统都要求您使用 JSON 或 YAML 中的 swagger 规范来定义 API 的所有端点(等等)。
我的问题是:是否有根据实际源代码生成这些规范文件的方法?我在问,因为当您开始添加属性或返回略有不同的结果时,似乎很难保持端点代码和文档同步。
所以当我有这段代码时(使用 http4s & RhoService):
object HelloWorld {
val service = new RhoService {
GET / "hello" / 'name |>> { name: String =>
Ok(Json.obj("message" -> Json.fromString(s"Hello, ${name}")))
}
}
}
如果它能够产生(以某种方式:)那就太好了
/hello/{name}:
get:
tags:
- "HelloWorld"
summary: ""
description: ""
operationId: "getHellobyName"
produces:
- "application/json"
parameters:
- name: "name"
in: "path"
description: ""
required: true
type: "string"
responses:
200:
description: "successful operation"
schema:
$ref: "#/definitions/Hello"
security:
- api_key: []