注:ジャクソン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値をJavanullではなく、として逆シリアル化したいのですがNullNode
。そして、私は今のところそれを行う方法を見つけることができませんでした。
どうやってそれを達成しますか?
(注:具象クラスのすべてのコンストラクターは@JsonCreator
適切な@JsonProperty
アノテーションが付いています-問題なく動作します。私の唯一の問題はJSON null処理です)