如何在运行时在swagger-ui上添加键值对

时间:2019-04-11 07:20:00

标签: spring-boot swagger swagger-ui

我在Spring Boot Web服务中使用@queryparam,现在我想在Swagger UI上显示键值对。我的查询参数不固定。因此可以在Swagger UI上向用户显示选项以在运行时添加键和值吗?

Swagger UI应该看起来像这样 enter image description here

requestURL应该看起来像这样 enter image description here

我已将Web服务声明为

public ResponseEntity<Object> getUserInfo(@RequestParam final Map<String,String> filterParameters) {
    // business logic
}

请给我一个解决方案。

0 个答案:

没有答案