實際答:
默認解串器枚舉使用.name()
反序列化,所以它不使用@JsonValue
。正如@OldCurmudgeon指出的那樣,您需要傳入{"event": "FORGOT_PASSWORD"}
以匹配.name()
的值。
的另一種選擇(假設你想要寫和讀的JSON值是相同的)...
更多信息:
有(又)另一種方式來管理序列化和與傑克遜的反序列化過程。您可以指定這些批註使用自己定製的串行器和解串:
@JsonSerialize(using = MySerializer.class)
@JsonDeserialize(using = MyDeserializer.class)
public final class MyClass {
...
}
然後,你必須寫MySerializer
和MyDeserializer
它看起來像這樣:
MySerializer
public final class MySerializer extends JsonSerializer<MyClass>
{
@Override
public void serialize(final MyClass yourClassHere, final JsonGenerator gen, final SerializerProvider serializer) throws IOException, JsonProcessingException
{
// here you'd write data to the stream with gen.write...() methods
}
}
MyDeserializer
public final class MyDeserializer extends org.codehaus.jackson.map.JsonDeserializer<MyClass>
{
@Override
public MyClass deserialize(final JsonParser parser, final DeserializationContext context) throws IOException, JsonProcessingException
{
// then you'd do something like parser.getInt() or whatever to pull data off the parser
return null;
}
}
最後一點,尤其是對這樣做是爲了與方法getYourValue()
序列化的枚舉JsonEnum
,你的串行器和解串可能是這樣的:
public void serialize(final JsonEnum enumValue, final JsonGenerator gen, final SerializerProvider serializer) throws IOException, JsonProcessingException
{
gen.writeString(enumValue.getYourValue());
}
public JsonEnum deserialize(final JsonParser parser, final DeserializationContext context) throws IOException, JsonProcessingException
{
final String jsonValue = parser.getText();
for (final JsonEnum enumValue : JsonEnum.values())
{
if (enumValue.getYourValue().equals(jsonValue))
{
return enumValue;
}
}
return null;
}
你試過'{「Event」:「FORGOT_PASSWORD」}'?請注意事件和FORGOT_PASSWORD上的大寫字母。 – OldCurmudgeon
類似的:[如何使用傑克遜JSON來註釋爲反序列化枚舉字段(https://stackoverflow.com/questions/9300191/how-to-annotate-enum-fields-for-deserialization-using-jackson-json) – Vadzim