我想在API REST Web服务中嵌入swagger3和swagger3 UI。
应用程序Web使用spring-boot 1.5.7.RELEASE开发。
到目前为止,我已经使用springfox-swagger2和springfox-swagger-ui来轻松实现目标。
但不幸的是,我发现swagger2不管理具有相同路径的多个端点(以及不同的Accept媒体内容)。通常用于版本控制。
例如:
===>
GET /api/customer/123 HTTP/1.1
Accept: application/vnd.company.app.customer-v1+json
===>
GET /api/customer/123 HTTP/1.1
Accept: application/vnd.company.app.customer-v2+json
Swagger3管理这个,但Springfox还没有。