自定义对象的类型是什么?这是复杂类型吗?如果可以,有人可以提供任何示例吗?在文档中找不到关于此的任何内容...
下面是我需要为其创建的课程:
enter code here
@JsonIgnoreProperties(ignoreUnknown=true)
public class ResponseDTO {
private String responseCode;
private String responseMessage;
private CustomClass userList;
public static class CustomClass {
@JsonProperty("User")
private List<User> user;
public static class User{
private String userName;
private String score;
}
}