作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
语言
描述
嗨,我正在使用 springfox-swagger-ui 和 springfox-bean-validators我怎样才能 Swagger 说我的属性(property)是空头($int16)
我的Pojo
@ApiModelProperty(required = true, dataType = "java.lang.Short")
@NotNull
@JsonProperty("deviceId")
private Short deviceId;
Swagger 中的结果
设备 ID* |整数($int32)
预期
设备 ID* | $int16
非常感谢
诚挚的
最佳答案
不幸的是你不能。
Swagger specification不支持short
(int16
) 数据类型。
支持的数据类型:
+-------------+---------+-----------+--------------------------------------------------+
| Common Name | type | format | Comments |
+-------------+---------+-----------+--------------------------------------------------+
| integer | integer | int32 | signed 32 bits |
| long | integer | int64 | signed 64 bits |
| float | number | float | |
| double | number | double | |
| string | string | | |
| byte | string | byte | base64 encoded characters |
| binary | string | binary | any sequence of octets |
| boolean | boolean | | |
| date | string | date | As defined by full-date - RFC3339 |
| dateTime | string | date-time | As defined by date-time - RFC3339 |
| password | string | password | Used to hint UIs the input needs to be obscured. |
+-------------+---------+-----------+--------------------------------------------------+
关于java - 春狐 : Short type is considered as $int32,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58955284/
我是一名优秀的程序员,十分优秀!