我有提供商接口定製傑克遜串行器對包裝對象
interface IProvider<T> {
T locate();
}
和包含類型IProvider的視野中的類(可以是另一種類型的其他字段)。
class MyObject {
MyLocator<String> field;
}
我需要使用Jackson 1.7將MyObject的實例序列化爲JSON。輸出必須與MyObject.field是一個字符串(即沒有引用ILocator)相同。
我不知道如何構建實現此目的所需的自定義序列化程序。這裏是我嘗試使用此任務的結構:
class MyLocatorSerializer extends SerializerBase<MyLocator<?>> {
public MyLocatorSerializer() {
super(MyLocator.class, false);
}
@Override
public void serialize(MyLocator<?> a_value, JsonGenerator a_jgen,
SerializerProvider a_provider) throws IOException, JsonGenerationException {
// Insert code here to serialize a_value.locate(), whatever its type
}
@Override
public JsonNode getSchema(SerializerProvider a_provider, Type a_typeHint)
throws JsonMappingException {
// What should I return here? I can't find documentation regarding the different schema types...
}
}
的自定義序列將使用
SimpleModule module = new SimpleModule("MyModule", new Version(1, 0, 0, null));
module.addSerializer(new MyLocatorSerializer());
objectMapper.registerModule(module);
謝謝您的回答。你達到的最終結果正是我所追求的。但是,就我而言,按照您的示例,StringWrapper類是第三方庫的一部分,因此使用@JsonValue對其進行註釋是不切實際的。 – bernie 2012-02-27 14:53:27
像往常一樣,混合註釋[wiki.fasterxml.com/JacksonMixInAnnotations]是將這些與第三方庫一起使用的方式。 – StaxMan 2012-02-29 16:13:24