I know this may be simple. However, I just can\'t get it to work.
So I am trying to use Spring RestTemplate to map my JSON data. I have following JSON response from a re
Annotate property "data" with @JsonUnwrapped as below
@JsonIgnoreProperties(ignoreUnknown = true) public class Response implements Serializable { private String message; private String status; @JsonUnwrapped private List data; }