作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下类(class):
import com.fasterxml.jackson.annotation.JsonProperty
import org.joda.time.DateTime
import org.joda.time.DateTimeZone
data class Entity(
val email: String,
val name: String,
val birthDate: DateTime,
@JsonProperty(required = false) val gender: Gender? = null,
@JsonProperty(required = false) val country: String? = null,
val locale: String,
val disabled: Boolean = false,
@JsonProperty(required = false) val createdAt: DateTime = DateTime(DateTimeZone.UTC),
val role: Role,
val entityTypeId: Long,
val entityTypeAttributes: MutableMap<String, Any> = HashMap(),
val medicalSpecialityId: Long? = null,
val id: Long? = null
)
有些属性不是必需的,因为它们要么可以为 null(性别、国家/地区),要么具有默认值 (createdAt)。
但是生成的swagger文档如下:
"components": {
"schemas": {
"Entity": {
"required": [
"birthDate",
"createdAt", <------------ Notice here!
"disabled",
"email",
"entityTypeAttributes",
"entityTypeId",
"locale",
"name",
"role"
],
"type": "object",
"properties": {
"email": {
"type": "string"
},
"name": {
"type": "string"
},
"birthDate": {
"type": "string",
"format": "date-time"
},
"gender": {
"type": "string",
"enum": [
"MALE",
"FEMALE",
"OTHER"
]
},
"country": {
"type": "string"
},
"locale": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"role": {
"type": "string",
"enum": [
"ADMIN",
"DOCTOR",
"PATIENT"
]
},
"entityTypeId": {
"type": "integer",
"format": "int64"
},
"entityTypeAttributes": {
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"medicalSpecialityId": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "integer",
"format": "int64"
}
}
},
(...)
因此,就文档而言,它表明 createdAt
是强制性的(这不是真的)...
我正在使用 Kotlin、Javalin 和 OpenAPI (io.javalin.plugin.openapi
) Javalin 集成。
我不知道我还需要做什么才能让 OpenAPI 明白 createdAt
是可选的...
最佳答案
我的猜测是,kotlin 实现使用可空性作为发现必需属性并忽略必需属性的方法。例如,您实际上不需要性别和国家/地区的注释。
显然这并不理想,但是如果将 creadtedAt 更改为 DateTime 呢?它不会按要求显示。
这可能是 javalin 引入的 kotlin openapi 文档工具的错误。
关于kotlin - 为什么 Swagger 不检测可选的 JSON 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61696873/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!