gpt4 book ai didi

java - 用 Swagger 表示 ISO 8601 年月日期文档

转载 作者:行者123 更新时间:2023-12-05 04:49:39 24 4
gpt4 key购买 nike

如何让 Swagger 核心生成 openapi.json 文档,其中 Year-Month 字段表示为 String?

在代码中,我已经尝试过 @JsonFormat@JsonbDateFormat

返回的实体正确表示为字符串,格式正确,但文档始终生成为对象。

环境:

  • io.swagger.core.v3.swagger-jaxrs2 2.1.9
  • 野蝇 21.0.2
  • Java 11

这里是一个片段:

@JsonbDateFormat(value = "uuuu-MM") // or "yyyy-MM", or @JsonFormat(shape = Shape.STRING, pattern = "uuuu-MM")
private YearMonth reference;

实体返回:

{
"reference": "2020-11",
}

生成的文档:

{
"openapi" : "3.0.1",
...
"components" : {
"schemas" : {
"Entity" : {
"type" : "object",
"properties" : {
"reference" : {
"type" : "object",
"properties" : {
"year" : {
"type" : "integer",
"format" : "int32"
},
"month" : {
"type" : "string",
"enum" : [ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" ]
},
"monthValue" : {
"type" : "integer",
"format" : "int32"
},
"leapYear" : {
"type" : "boolean"
}
}
}
}
}
}
}
}

最佳答案

显然 Swagger 核心不使用 @JsonFormat@JsonbDateFormat 作为格式化模板的来源,它只使用属性类型,但它没有 YearMonth 类型的默认值.

因此,可以使用 Swagger Annotation @Schema 定义数据表示。

在这种特殊情况下:@Schema(type = "string", format = "yearmonth", example = "2020-07")

关于java - 用 Swagger 表示 ISO 8601 年月日期文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67540201/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com