Is there any alternative to @JsonProperty
to define json field name for deserialization at runtime (application startup)?
I considered using custom deserializer, but I don't want to read entire json to JsonNode
, because some fields are complex Java objects. I want jackson to parse it in default way using all configured modules.