注意:杰克逊 2.1.x。
问题很简单,但到目前为止我找不到解决方案。我浏览了现有的文档等,但找不到答案。
基类是这样的:
@JsonTypeInfo(use = Id.NAME, include = As.PROPERTY, property = "op")
@JsonSubTypes({
@Type(name = "add", value = AddOperation.class),
@Type(name = "copy", value = CopyOperation.class),
@Type(name = "move", value = MoveOperation.class),
@Type(name = "remove", value = RemoveOperation.class),
@Type(name = "replace", value = ReplaceOperation.class),
@Type(name = "test", value = TestOperation.class)
})
public abstract class JsonPatchOperation
{
/*
* Note: no need for a custom deserializer, Jackson will try and find a
* constructor with a single string argument and use it
*/
protected final JsonPointer path;
protected JsonPatchOperation(final JsonPointer path)
{
this.path = path;
}
public abstract JsonNode apply(final JsonNode node)
throws JsonPatchException;
@Override
public String toString()
{
return "path = \"" + path + '"';
}
}
有问题的课程是这样的:
public abstract class PathValueOperation
extends JsonPatchOperation
{
protected final JsonNode value;
protected PathValueOperation(final JsonPointer path, final JsonNode value)
{
super(path);
this.value = value.deepCopy();
}
@Override
public String toString()
{
return super.toString() + ", value = " + value;
}
}
当我尝试反序列化时:
{ "op": "add", "path": "/x", "value": null }
我希望将 null 值反序列化为 a NullNode
,而不是 Java null。到目前为止,我找不到办法做到这一点。
你如何做到这一点?
(注意:具体类的所有构造函数都@JsonCreator
带有适当的@JsonProperty
注释——它们可以正常工作,我唯一的问题是 JSON 空处理)