JSON Jackson - 使用自定义序列化程序序列化多态类时的异常

时间:2015-01-10 12:04:43

标签: java json jackson

我目前正在将一些代码从Jackson 1.x迁移到Jackson 2.5 json mapper,这是一个长期存在的问题,而不是1.x中的问题。

这是设置(见下面的代码):

  • interface IPet
  • class Dog实现IPet
  • IPet使用@JsonTypeInfo和@JsonSubTypes
  • 进行注释
  • class Human有一个IPet类型的属性,用@JsonSerialize注释(using = CustomPetSerializer.class)

问题: 如果我序列化Dog的一个实例,它按预期工作(杰克逊也将类型信息添加到json字符串中)。 但是,当我序列化Human类的一个实例时,会抛出一个异常:

  

com.fasterxml.jackson.databind.JsonMappingException:输入id处理   未实现类型com.pet.Dog(通过引用链:   com.Human [ “宠物”])

CustomPetSerializer类的serialize(...)方法未被调用(使用断点测试)。

代码:

IPet实施:

@JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.PROPERTY, property="type")
@JsonSubTypes({
     @JsonSubTypes.Type(value=Dog.class,    name="dog")
    //,@JsonSubTypes.Type(value=Cat.class,  name="cat")
    //more subtypes here...
})
public interface IPet
{
    public Long getId();
    public String getPetMakes();
}

狗的实施:

public class Dog implements IPet
{
    @Override
    public String getPetMakes()
    {
        return "Wuff!";
    }

    @Override
    public Long getId()
    {
        return 777L;
    }
}

拥有狗的人:

public class Human
{
    private IPet pet = new Dog();

    @JsonSerialize(using=CustomPetSerializer.class)
    public IPet getPet()
    {
        return pet;
    }
}

CustomPetSerializer实施:

public class CustomPetSerializer extends JsonSerializer<IPet>
{
    @Override
    public void serialize(IPet value, JsonGenerator gen, SerializerProvider serializers) throws IOException, JsonProcessingException
    {
        if(value != null && value.getId() != null)
        {
            Map<String,Object> style = new HashMap<String,Object>();
            style.put("age", "7");
            gen.writeObject(style);
        }
    }
}

JUnit测试方法:

@Test
public void testPet() throws JsonProcessingException
{
    ObjectMapper mapper = new ObjectMapper();

    Human human = new Human();

    //works as expcected
    String json = mapper.writeValueAsString(human.getPet());
    Assert.assertNotNull(json);
    Assert.assertTrue(json.equals("{\"type\":\"dog\",\"id\":777,\"petMakes\":\"Wuff!\"}"));

    //throws exception: Type id handling not implemented for type com.pet.Dog (through reference chain: com.Human["pet"])
    json = mapper.writeValueAsString(human);    //exception is thrown here
    Assert.assertNotNull(json);
    Assert.assertTrue(json.contains("\"age\":\"7\""));
}

2 个答案:

答案 0 :(得分:18)

您需要在serializeWithType内覆盖CustomPetSerializer,因为IPet是多态的。这也是未调用serialize的原因。查看调用serializeWithType时详细说明的this related SO question。例如,您的serializeWithType实现可能如下所示:

@Override
public void serializeWithType(IPet value, JsonGenerator gen, 
        SerializerProvider provider, TypeSerializer typeSer) 
        throws IOException, JsonProcessingException {

  typeSer.writeTypePrefixForObject(value, gen);
  serialize(value, gen, provider); // call your customized serialize method
  typeSer.writeTypeSuffixForObject(value, gen);
}

将为{"pet":{"type":"dog":{"age":"7"}}}个实例打印Human

答案 1 :(得分:8)

由于杰克逊2.9 writeTypePrefixForObject()writeTypeSuffixForObject()已被弃用(我不明白为什么)。现在似乎在新的方法下:

@Override
public void serializeWithType(IPet value, JsonGenerator gen, 
        SerializerProvider provider, TypeSerializer typeSer) 
        throws IOException, JsonProcessingException {

  WritableTypeId typeId = typeSerializer.typeId(value, START_OBJECT);
  typeSer.writeTypePrefix(gen, typeId);
  serialize(value, gen, provider); // call your customized serialize method
  typeSer.writeTypeSuffix(gen, typeId);
}

现在这是一个额外的界限,所以不确定为什么它向前迈进了一步,也许它可以更有效地重用typeId对象。

来源:目前掌握杰克逊的ObjectNode课程。不是最好的来源,但无法看到任何升级文档解释该怎么做。