I have a Problem in My DTO that when my Boolean field start with is like IsAzd, i got two different field name for this field.
My Field in DTO
@JsonProperty("IsAzd")
private Boolean isAzd;
Response
"azd": false,
"IsAzd": false
i should get just “IsAzd”: false.
Thanks