Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 API 的三个路径变量。我想用 ***** 屏蔽 Swagger UI 上的一个输入。
使用 Springdoc OpenAPI 时如何执行此操作?
您只需使用招摇的注释:
@Parameter(schema = @Schema(type = "string", format = "password"))
正如jenkinsme在他们的回答中已经显示的那样,将格式设置为password. 此外,不需要类型字段,因为它默认为字符串(希望所有密码都是字符串)。
password
@Parameter(schema = @Schema(format = "password"))
上面将显示如下图所示
有关所有支持的类型,请参阅数据类型上的 OpenAPI 规范页面