作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 JSON 字符串,将空列表标记为 ""
而不是[]
。例如,如果我有一个没有子对象的对象,我将收到如下字符串:
{"id":13, "children":""}
我想将其反序列化为父类,并将子项正确设置为空的子项列表。
public class Parent {
private Long id;
private List<Child> children;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public List<Child> getChildren() {
return children;
}
public void setChildren(List<Child> children) {
this.children = children;
}
}
对于上面的 JSON 字符串,我想要一个具有 id
的对象。设置为13
,以及 children
设置为new ArrayList<Child>()
Parent
id <- 13
children <- new ArrayList<Child>()
我会知道如何对整个类使用注释
@JsonDeserialize(using = ParentDeserializer.class)
public class Parent {
...
}
然后
public class ParentDeserializer extends JsonDeserializer<Parent> {
public Parent deserialize(JsonParser parser, DeserializationContext context) {
...
}
}
但是,我想解决从 ""
正确实例化列表的一般问题。字符串:
public class Parent {
...
// Can I get something like this?
@JsonDeserialize(using = EmptyArrayDeserializer<Child>.class)
public void setChildren(List<Child> children) {
this.children = children;
}
}
我可以得到类似的东西吗?
最佳答案
几个选项;首先,您要启用“ACCEPT_EMPTY_STRING_AS_NULL_OBJECT”:
mapper.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT);
使空字符串变为null。如果您希望将其转换为实际的空列表,请覆盖 setter :
public void setChildren(List<Child> c) {
if (c == null) {
children = Collections.emptyList();
} else {
chidlren = c;
}
}
关于json - Jackson 将 ""反序列化为空列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12933394/
出于好奇,我尝试了一些原型(prototype)制作,但似乎只允许在第一个位置使用子例程的原型(prototype) &。 当我写作时 sub test (&$$) { do_somethin
我需要开发一个类似于 Android Play 商店应用程序或类似 this app 的应用程序.我阅读了很多教程,发现几乎每个教程都有与 this one 类似的例子。 . 我已经开始使用我的应用程
考虑一个表示“事件之间的时间”的列: (5, 40, 3, 6, 0, 9, 0, 4, 5, 18, 2, 4, 3, 2) 我想将这些分组到 30 个桶中,但桶会重置。期望的结果: (0, 1,
我是一名优秀的程序员,十分优秀!