我有一个带有几个实现类的通用接口,我需要通过 Json 对其进行序列化和反序列化。我试图开始使用杰克逊,使用完整的数据绑定,但运气不佳。
示例代码说明了问题:
import org.codehaus.jackson.map.*;
import org.codehaus.jackson.map.type.TypeFactory;
import org.codehaus.jackson.type.JavaType;
public class Test {
interface Result<T> {}
static class Success<T> implements Result<T> {
T value;
T getValue() {return value;}
Success(T value) {this.value = value;}
}
public static void main(String[] args) {
Result<String> result = new Success<String>("test");
JavaType type = TypeFactory.defaultInstance().constructParametricType(Result.class, String.class);
ObjectMapper mapper = new ObjectMapper().enableDefaultTyping();
ObjectWriter writer = mapper.writerWithType(type);
ObjectReader reader = mapper.reader(type);
try {
String json = writer.writeValueAsString(result);
Result<String> result2 = reader.readValue(json);
Success<String> success = (Success<String>)result2;
} catch (Throwable ex) {
System.out.print(ex);
}
}
}
调用 towriteValueAsString
会导致以下异常:
org.codehaus.jackson.map.JsonMappingException:没有为类 Test$Success 找到序列化程序,也没有发现用于创建 BeanSerializer 的属性(为避免异常,请禁用 SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS)
为什么杰克逊希望我注册一个序列化程序 - 我虽然完全数据绑定的重点是我不需要这样做?
上述方法是否正确?