作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已在我的 yaml 文件参数中标记:
parameters:
- name: someID
in: query
description: The some ID
required: true
schema:
type: uuid
在生成的 java 类字段中被标记为必需,这很好,但不幸的是在 Swagger UI 上却没有。这是有问题的,因为我想在请求失败之前通知用户需要此文件。
最佳答案
在 OpenAPI 2.0 (swagger: '2.0'
) 中,查询参数不使用 schema
而是直接使用 type
关键字。请注意there's no type: uuid
,相反,您需要 type: string
+ format: uuid
:
parameters:
- name: someID
in: query
description: The some ID
required: true
type: string
format: uuid
Swagger UI 通过在参数名称旁边显示红色 * required
注释来指示所需参数:
关于java - 查询中必需的参数未在 UI 中标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56041099/
我是一名优秀的程序员,十分优秀!