我的招摇占位符描述有问题

问题描述 投票:0回答:1

我对占位符的描述有疑问,参数看起来重复且独立,如下图所示:

Swagger placeholder

这是我的控制器: post endpoint

这个控制器链接到一个服务类。 我希望占位符仅包含一次参数名称,并且不带破折号 (

-
)。

spring swagger swagger-ui swagger-2.0 sts
1个回答
0
投票

这是参数名称和值的组合描述或参数示例的表示。您可以使用

@ApiParam
更改字段内的占位符。

示例:

@GetMapping("/clients/{uid}")
public ResponseEntity<?> getClient(@ApiParam(value = "An String value representing a User ID." ,  example = "a12") @PathVariable String uid)

或者

@GetMapping("/clients/{uid}")
public ResponseEntity<?> getClient(@ApiParam(value = "An String value representing a User ID.") @PathVariable String uid)
© www.soinside.com 2019 - 2024. All rights reserved.