Jackson Custom field name with @JsonProperty
When the JSON field name doesn’t exactly match the Java field names, we can use @JsonProperty to change the name of a JSON field in Jackson. Table of contents: 1. Setup Jackson 2. JSON Unrecognized field 3. Custom field name with @JsonProperty 4. Download Source Code 5. References P.S Tested with Jackson 2.17.0 1. Setup …