在Spring网络应用程序中嵌入Swagger3 / Swagger 3 UI

时间:2017-09-20 20:30:29

标签: java spring-boot swagger swagger-ui

我想在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还没有。

0 个答案:

没有答案