本文介绍了Java jackson嵌入式对象反序列化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有回复
{
"item": {
"field1": 1,
"field2": 1,
}
}
我想将其反序列化为隐私
类,包含2个字段 field1
和 field2
。
I want to deserialize it to Privacy
class with 2 fields field1
and field2
.
已添加
objectMapper.configure(DeserializationConfig.Feature.UNWRAP_ROOT_VALUE, unwrapRootValue);
但现在我收到一个例外
org.codehaus.jackson.map.JsonMappingException: Root name 'item' does not match expected ('Privacy') for type [simple type, class com.myproj.Privacy]
如何将此类映射到json对象?
How can I map this class to json object?
推荐答案
我找到了答案:我们必须在课堂上添加 @JsonRootName(value =item)
注释。
I found the answer: we have to add @JsonRootName(value = "item")
annotation to the class.
这篇关于Java jackson嵌入式对象反序列化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!