我在反序列化一些嵌套的 Json 时遇到问题。
json:这里的 JSON 链接
反序列化:
和两个类:
我收到了这个异常:
com.fasterxml.jackson.databind.JsonMappingException: Unrecognized Type: [null]
有什么建议么?
我在反序列化一些嵌套的 Json 时遇到问题。
json:这里的 JSON 链接
反序列化:
和两个类:
我收到了这个异常:
com.fasterxml.jackson.databind.JsonMappingException: Unrecognized Type: [null]
有什么建议么?
假设您错过了RandomBixi Class
.
class RandomBixi {
@JsonProperty("id")
int id;
@JsonProperty("s")
String nom;
@JsonProperty("n")
int idTerminal;
@JsonProperty("st")
int etatStation;
@JsonProperty("b")
boolean bloque;
@JsonProperty("su")
boolean suspendue;
@JsonProperty("m")
boolean hs;
@JsonProperty("lu")
int lu;
@JsonProperty("lc")
int lc;
@JsonProperty("bk")
boolean bk;
@JsonProperty("bl")
boolean bl;
@JsonProperty("la")
String latitude;
@JsonProperty("lo")
String longitude;
@JsonProperty("da")
int borneDispo;
@JsonProperty("dx")
int dx;
@JsonProperty("ba")
int bixiDispo;
@JsonProperty("bx")
int bx;
getters ans setters....
}
如果您不想映射所有属性,请在属性上使用@JsonIgnore
。