Mapping JSON to Java Object return null value
问题 I want to parsing json object like this: { "Count" : 1, "Data" : [ { "ContactID" : 1567993182, "Email" : "enamdimensi@localhost.com", "Action" : "unsub", "Name" : "", "Properties" : {} } ], "Total" : 1 } to this java object. public class Response { @JsonProperty("Status") private String status; @JsonProperty("Data") private List<DataResponse> data; @JsonProperty("Total") private Integer total; @JsonProperty("Count") private Integer count; public MailjetResponse() { super(); } ........ setter