杰克逊反序列化嵌套多态类型

时间:2013-01-08 19:18:12

标签: java json jackson

我正在尝试使用Jakson反序列化嵌套的多态类型。意思是我的顶级类型引用另一个多态类型,最终由不是抽象的类扩展。这不起作用,它会引发异常。

以下是我正在尝试做的一个简化示例。

package com.adfin;

import junit.framework.TestCase;
import org.codehaus.jackson.annotate.JsonSubTypes;
import org.codehaus.jackson.annotate.JsonTypeInfo;
import org.codehaus.jackson.map.ObjectMapper;

import java.io.IOException;

public class JaksonDouble extends TestCase {

  @JsonTypeInfo(
    use = JsonTypeInfo.Id.NAME,
    include = JsonTypeInfo.As.PROPERTY,
    property = "name"
  )
  @JsonSubTypes({
    @JsonSubTypes.Type(value = SecondLevel.class, name = "SECOND")
  })
  public static abstract class FirstLevel {
    public abstract String getTestValue();
  }

  @JsonTypeInfo(
    use = JsonTypeInfo.Id.CLASS,
    include = JsonTypeInfo.As.PROPERTY,
    property = "@class"
  )
  public static abstract class SecondLevel extends FirstLevel {

  }

  public static class FinalLevel extends SecondLevel {
    String test;
    @Override public String getTestValue() { return test; }
  }

  public void testDoubleAbstract() throws IOException {
    String testStr = "{ \"name\": \"SECOND\", \"@class\": \"com.adfin.JasksonDouble.FinalLevel\", \"test\": \"foo\"}";

    ObjectMapper mapper = new ObjectMapper();
    FirstLevel result = mapper.readValue(testStr, FirstLevel.class);
  }
}

我得到了关于抽象类型的标准异常。

org.codehaus.jackson.map.JsonMappingException: Can not construct instance of com.adfin.JaksonDouble$SecondLevel, problem: abstract types can only be instantiated with additional type information at [Source: java.io.StringReader@f2a55aa; line: 1, column: 19]

让我解释一下我的用例。我有一个Json文档描述了数据的工作流程。我在“一级”有一个抽象类型,描述对单个值的操作。我派生出一堆非抽象的类来实现常见操作(我用@JsonSubTypes注释所有这些类。)

我有一个叫做“CUSTOM”的特殊@JsonSubTypes。这是另一个抽象类,表示其他人编写的自定义操作(在普通jar之外),并且可以使用“@class”属性指定完全限定的类名。看起来Jakson解析器从不在第二个lavel类上读取@JsonTypeInfo注释。

我该怎样才能做到这一点。或者至少我如何才能使这个用例工作。

2 个答案:

答案 0 :(得分:2)

您的定义搞砸了 - 您正在尝试使用两种类型标识符,类型名称和类。这没有任何意义。你应该选择一种方法,而不是两种方法。

如果您选择Java类名作为类型信息,请忽略该名称。此外,您只需要为@JsonTypeInfo添加FirstLevel;子类继承了这个定义。

如果您更喜欢使用逻辑类型名称,请删除class属性。您还需要指定子类型列表,或者使用注释,或者通过ObjectMapper注册它们。

答案 1 :(得分:0)

首先,你的json中的类名是错误的应该是com.adfin.JasksonDouble $ FinalLevel,美元而不是点。

这是一个有效的代码,但我不确定它是否适合所有子类型。

@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "@class")
public static abstract class FirstLevel {
    public abstract String getTestValue();
}

从其他类中删除注释,它应该可以工作(只是测试它)。

然而,所有这些东西看起来都很复杂,如果您可以自由尝试另一个库,您可能需要查看Genson。 要启用多态类型支持,您必须配置Genson实例。如果你也是生成json的那个你不需要任何其他东西(因为你可以使用Genson来生成处理多态类型所需的json流)。

以下是一个例子:

// enable polymorphic types support
Genson genson = new Genson.Builder().setWithClassMetadata(true).create();
// the @class must be first property in the json object
String testStr = "{ \"@class\": \"com.adfin.JasksonDouble$FinalLevel\", \"test\": \"foo\"}";
FirstLevel result = genson.deserialize(testStr, FirstLevel.class);
System.out.println(result.getTestValue());

Genson的另一个好处是,它使您能够为类注册别名,因此您不必在流中提供所有包信息。另一个优点是,如果将json流存储在数据库中并将类移动到另一个包中,则只需更改应用程序中的别名,而不是从数据库迁移所有json流。

Genson genson = new Genson.Builder().setWithClassMetadata(true)
                                    .addAlias("FinalLevel", FinalLevel.class)
                                    .create();
// the @class must be first property in the json object
String testStr = "{ \"@class\": \"FinalLevel\", \"test\": \"foo\"}";
FirstLevel result = genson.deserialize(testStr, FirstLevel.class);
System.out.println(result.getTestValue());