将 HashMap 反序列化为 POJO 并将空字段设置为 null?
Deserializing a HashMap into a POJO and setting empty fields to null?
我收到一个 JSON 响应,我在其中解析为:
List<LinkedHashMap> jsonResponse = objectMapper.readValue(jsonResponse, List.class);
JSON响应以'{'开头,这就是为什么我必须将其反序列化为List class,并且List中嵌套的是LinkedHashMaps,我不确定如果我可以直接反序列化到我的自定义 POJO 中。我试图在这里将每个 HashMap 转换为我的自定义 POJO:
for (LinkedHashMap res : jsonResponse) {
ProductsByInstitution resObj = objectMapper.convertValue(res, ProductsByInstitution.class);
}
但是,此自定义 POJO 具有额外的可选字段,这些字段可能包含也可能不包含在 JSON 响应中。最终发生的是 JSON 响应中排除的 Integer / Double 字段分别自动设置为 0 或 0.0。我希望它们为空。
编辑:
仍然收到空字段的 0。
我试过的代码:
TypeReference<List<ProductsByInstitution>> typeRef
= new TypeReference<List<ProductsByInstitution>>() {};
objectMapper.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT);
List<ProductsByInstitution> objs = objectMapper.readValue(lambdaResponse, typeRef);
最后一行是错误指向的地方。
POJO class:
public class ProductsByInstitiution {
private int id;
private String name;
private String status;
private int buy;
private int offer;
private int max;
private int min;
private double figure;
.... (Getters and setters)
因此 JSON 响应可能如下所示:
id: 0
name: "Place"
status: "Good"
buy: 50
min: 20
然后当反序列化发生时,figure、max 和 offer 被设置为 0 / 0.0
原始类型 int
或 double
不能表示 null
。使用包装器 class Integer
或 Double
可以表示空值。
public class ProductsByInstitiution {
private Integer id;
private Integer max;
private Double figure;
...
}
我收到一个 JSON 响应,我在其中解析为:
List<LinkedHashMap> jsonResponse = objectMapper.readValue(jsonResponse, List.class);
JSON响应以'{'开头,这就是为什么我必须将其反序列化为List class,并且List中嵌套的是LinkedHashMaps,我不确定如果我可以直接反序列化到我的自定义 POJO 中。我试图在这里将每个 HashMap 转换为我的自定义 POJO:
for (LinkedHashMap res : jsonResponse) {
ProductsByInstitution resObj = objectMapper.convertValue(res, ProductsByInstitution.class);
}
但是,此自定义 POJO 具有额外的可选字段,这些字段可能包含也可能不包含在 JSON 响应中。最终发生的是 JSON 响应中排除的 Integer / Double 字段分别自动设置为 0 或 0.0。我希望它们为空。
编辑:
仍然收到空字段的 0。
我试过的代码:
TypeReference<List<ProductsByInstitution>> typeRef
= new TypeReference<List<ProductsByInstitution>>() {};
objectMapper.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT);
List<ProductsByInstitution> objs = objectMapper.readValue(lambdaResponse, typeRef);
最后一行是错误指向的地方。
POJO class:
public class ProductsByInstitiution {
private int id;
private String name;
private String status;
private int buy;
private int offer;
private int max;
private int min;
private double figure;
.... (Getters and setters)
因此 JSON 响应可能如下所示:
id: 0
name: "Place"
status: "Good"
buy: 50
min: 20
然后当反序列化发生时,figure、max 和 offer 被设置为 0 / 0.0
原始类型 int
或 double
不能表示 null
。使用包装器 class Integer
或 Double
可以表示空值。
public class ProductsByInstitiution {
private Integer id;
private Integer max;
private Double figure;
...
}