用Jackson和@JsonCreator反序列化JSON

时间:2019-01-30 14:31:54

标签: java json jackson json-deserialization objectmapper

我从正在开发的第三方工具接收JSON文档,即JSON经常扩展。我想坚持使用最简单的反序列化机制,以避免自定义反序列化器带来的更多维护。

这是JSON的相关部分:

{
"key1": "value1",
"key2": "value2",
"variants": {
    "columns": ["chr", "pos", "id", "ref", "alt", "qual", "filter", "type", "genotype", "alignpos", "basepos", "signalpos"],
    "rows": [
        ["17", 19561093, ".", "G", "C", 51, "PASS", "SNV", "het.", 97, 147, 1761],
        ["17", 19561123, ".", "T", "G", 51, "PASS", "SNV", "het.", 127, 177, 2120],
        ["17", 19561149, ".", "G", "A", 51, "PASS", "SNV", "het.", 153, 203, 2432]],
    "xranges": [
        [829, 1129],
        [1480, 1780],
        [1492, 1792]],
}}

问题出在variants标记上,尤其是“行”。看起来好像用@JsonValue批注对“行”进行了序列化,以消除否则将成为每个“行”一部分的字段名。取而代之的是,将附加的“列”字段序列化为至少提及一次列名。

没有variants标签,我已经成功使用ObjectMapper将JSON反序列化为POJO:

public class Pojo {
    private String key1;
    private String key2;
    public String getKey1() {
        return key1;
    }
    public void setKey1(String key1) {
        this.key1 = key1;
    }
    public String getKey2() {
        return key2;
    }
    public void setKey2(String key2) {
        this.key2 = key2;
    }
}

public static void main(String[] args) {
    final ObjectMapper objectMapper = new ObjectMapper();
    objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
    Pojo pojo = objectMapper.readValue(jsonFile, Pojo.class);
}

现在,为了反序列化变体,我将其添加到了我的原始POJO中。

@JsonProperty("variants")
private PojoVariants pojoVariants;

然后,实现了PojoVariants

public class PojoVariants {

    @JsonProperty("columns")
    private String[] columnNames;

    @JsonProperty("rows")
    private PojoVariant[] pojoVariantArr;

    public String[] getColumnNames() {
        return columnNames;
    }

    public void setColumnNames(String[] columnNames) {
        this.columnNames = columnNames;
    }

    public PojoVariant[] getPojoVariantArr() {
        return pojoVariantArr;
    }

    public void setPojoVariantArr(PojoVariant[] pojoVariantArr) {
        this.pojoVariantArr = pojoVariantArr;
    }

}

最后是PojoVariant

@JsonPropertyOrder({
        "chr", "pos",
        "id", "ref", "alt",
        "quality", "filter", "type", "genotype",
        "alignPos", "basePos", "signalPos" })
public class PojoVariant {

    private String chr;
    private int pos;

    private String id;
    private String ref;
    private String alt;

    private int quality;
    private String filter;
    private String type;
    private String genotype;

    private int alignPos;
    private int basePos;
    private int signalPos;

    @JsonCreator
    public PojoVariant(
            String chr, int pos,
            String id, String ref, String alt,
            int quality, String filter, String type, String genotype,
            int alignPos, int basePos, int signalPos) {

    }

}

设置@JsonPropertyOrder,希望杰克逊能够弄清楚我想将每个“行”读入PojoVariant实例。但是,使用原始的main方法,我得到了此堆栈跟踪:

org.codehaus.jackson.map.JsonMappingException: Argument #0 of constructor [constructor for my.json.stuff.PojoVariant, annotations: {interface org.codehaus.jackson.annotate.JsonCreator=@org.codehaus.jackson.annotate.JsonCreator()}] has no property name annotation; must have name when multiple-paramater constructor annotated as Creator

我知道Jackson希望我用属性名称来注释构造函数参数。但是JSON不包含任何开头。我想念什么?还是根本不支持这种方法-我必须实现自定义解串器吗?

1 个答案:

答案 0 :(得分:0)

jackson annotations javadoc中,@JsonPropertyOrder用于序列化,而不是反序列化:

  

可用于定义序列化对象属性时使用的排序(可能是部分)的注释。

此外,当用@JsonCreator注释构造函数时,构造函数必须为:

  
      
  • 单参数构造器 / factory方法,该方法的参数没有JsonProperty批注:如果是,这就是所谓的“委托创建者”,在这种情况下, Jackson首先将JSON绑定为参数,然后调用造物主
  •   
  • 构造函数/工厂方法,其中每个参数都使用JsonProperty或JacksonInject进行注释,以指示要绑定的属性的名称。
  •   

问题是您尝试从json列表["17", 19561093, ".", ..]反序列化为PojoVariant。杰克逊很聪明,但没有那么聪明。在这里他需要一些帮助,您可以帮助他实现自定义解串器。我们不想这样做,所以我们希望可以找到其他东西。

提示来自@JsonCreator javadoc(第一个项目符号,粗体文本)。而且,由于杰克逊知道如何将列表绑定到对象数组中,因此我们可以像这样重写PojoVariant构造函数:

@JsonCreator
public PojoVariant(Object[] params) {
    this.chr = (String) params[0];
    this.pos = (int) params[1];
    this.id = (String) params[2];
    this.ref = (String) params[3];
    this.alt = (String) params[4];
    this.quality = (int) params[5];
    this.filter = (String) params[6];
    this.type = (String) params[7];
    this.genotype = (String) params[8];
    this.alignPos = (int) params[9]; 
    this.basePos = (int) params[10];
    this.signalPos = (int) params[11];
}