[kotlin-spring] Move Jackson annotation from field to getter (#10825)

* Move Jackson annotation from field to getter

In some case, Jackson will duplicate entries when the annotation is on field
See https://github.com/FasterXML/jackson-databind/issues/1609

* Update samples
This commit is contained in:
Julien Herr
2023-01-02 16:32:57 +01:00
committed by GitHub
parent b8b8c5c208
commit 921199bba7
44 changed files with 191 additions and 191 deletions

View File

@@ -21,10 +21,10 @@ import io.swagger.v3.oas.annotations.media.Schema
data class Category(
@Schema(example = "null", description = "")
@field:JsonProperty("id") var id: kotlin.Long? = null,
@get:JsonProperty("id") var id: kotlin.Long? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("name") var name: kotlin.String? = null
@get:JsonProperty("name") var name: kotlin.String? = null
) {
}

View File

@@ -22,13 +22,13 @@ import io.swagger.v3.oas.annotations.media.Schema
data class ModelApiResponse(
@Schema(example = "null", description = "")
@field:JsonProperty("code") var code: kotlin.Int? = null,
@get:JsonProperty("code") var code: kotlin.Int? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("type") var type: kotlin.String? = null,
@get:JsonProperty("type") var type: kotlin.String? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("message") var message: kotlin.String? = null
@get:JsonProperty("message") var message: kotlin.String? = null
) {
}

View File

@@ -26,22 +26,22 @@ import io.swagger.v3.oas.annotations.media.Schema
data class Order(
@Schema(example = "null", description = "")
@field:JsonProperty("id") var id: kotlin.Long? = null,
@get:JsonProperty("id") var id: kotlin.Long? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("petId") var petId: kotlin.Long? = null,
@get:JsonProperty("petId") var petId: kotlin.Long? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("quantity") var quantity: kotlin.Int? = null,
@get:JsonProperty("quantity") var quantity: kotlin.Int? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("shipDate") var shipDate: java.time.OffsetDateTime? = null,
@get:JsonProperty("shipDate") var shipDate: java.time.OffsetDateTime? = null,
@Schema(example = "null", description = "Order Status")
@field:JsonProperty("status") var status: Order.Status? = null,
@get:JsonProperty("status") var status: Order.Status? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("complete") var complete: kotlin.Boolean? = false
@get:JsonProperty("complete") var complete: kotlin.Boolean? = false
) {
/**

View File

@@ -28,24 +28,24 @@ import io.swagger.v3.oas.annotations.media.Schema
data class Pet(
@Schema(example = "doggie", required = true, description = "")
@field:JsonProperty("name", required = true) var name: kotlin.String,
@get:JsonProperty("name", required = true) var name: kotlin.String,
@Schema(example = "null", required = true, description = "")
@field:JsonProperty("photoUrls", required = true) var photoUrls: kotlin.collections.MutableList<kotlin.String>,
@get:JsonProperty("photoUrls", required = true) var photoUrls: kotlin.collections.MutableList<kotlin.String>,
@Schema(example = "null", description = "")
@field:JsonProperty("id") var id: kotlin.Long? = null,
@get:JsonProperty("id") var id: kotlin.Long? = null,
@field:Valid
@Schema(example = "null", description = "")
@field:JsonProperty("category") var category: Category? = null,
@get:JsonProperty("category") var category: Category? = null,
@field:Valid
@Schema(example = "null", description = "")
@field:JsonProperty("tags") var tags: kotlin.collections.MutableList<Tag>? = null,
@get:JsonProperty("tags") var tags: kotlin.collections.MutableList<Tag>? = null,
@Schema(example = "null", description = "pet status in the store")
@field:JsonProperty("status") var status: Pet.Status? = null
@get:JsonProperty("status") var status: Pet.Status? = null
) {
/**

View File

@@ -21,10 +21,10 @@ import io.swagger.v3.oas.annotations.media.Schema
data class Tag(
@Schema(example = "null", description = "")
@field:JsonProperty("id") var id: kotlin.Long? = null,
@get:JsonProperty("id") var id: kotlin.Long? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("name") var name: kotlin.String? = null
@get:JsonProperty("name") var name: kotlin.String? = null
) {
}

View File

@@ -27,28 +27,28 @@ import io.swagger.v3.oas.annotations.media.Schema
data class User(
@Schema(example = "null", description = "")
@field:JsonProperty("id") var id: kotlin.Long? = null,
@get:JsonProperty("id") var id: kotlin.Long? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("username") var username: kotlin.String? = null,
@get:JsonProperty("username") var username: kotlin.String? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("firstName") var firstName: kotlin.String? = null,
@get:JsonProperty("firstName") var firstName: kotlin.String? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("lastName") var lastName: kotlin.String? = null,
@get:JsonProperty("lastName") var lastName: kotlin.String? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("email") var email: kotlin.String? = null,
@get:JsonProperty("email") var email: kotlin.String? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("password") var password: kotlin.String? = null,
@get:JsonProperty("password") var password: kotlin.String? = null,
@Schema(example = "null", description = "")
@field:JsonProperty("phone") var phone: kotlin.String? = null,
@get:JsonProperty("phone") var phone: kotlin.String? = null,
@Schema(example = "null", description = "User Status")
@field:JsonProperty("userStatus") var userStatus: kotlin.Int? = null
@get:JsonProperty("userStatus") var userStatus: kotlin.Int? = null
) {
}