I have a data model which I cannot change. The model itself is annotated with GSON annotations.
@SerializedName("first_value")
private String firstValue = null;
The deserialization with Jackson does not work as needed. Jackson cannot match the entry, therefore the value is null.
It would work with
@JsonProperty("first_value")
private String firstValue = null;
Is there any way I can make Jackson use the GSON annotations, or is there a any other solution in which I do not need to change the original models annotations?