5

我们使用 Jackson 1.9.1 对 Java 对象的 JSON 请求响应字符串进行序列化和反序列化。原始 Java 类型、集合类型和自定义对象被(反)序列化而没有问题。但是,我在尝试将 JSON 字符串反序列化为 java 枚举时遇到问题。JSON字符串是这样序列化的:

"wt":{"wt":100.5,"unit":{"LBS":3}}

wt 的 Java 类型是这样的:

public class Weight {

    protected double weight;
    protected Unit unit;
}

我在 SO 上提到了thisthisthis,并提出了重量单位的枚举,如下所示:

public enum Unit {

    KG("kg"),
    GM("gm"),
    LBS("lbs"),
    OZ("oz");

    private String value;  
    private WeightMeasurementUnit(String value) { this.value = value; }

    @JsonValue
    public String getValue() { return this.value; }

    @JsonCreator
    public static Unit create(String val) {
        Unit[] units = Unit.values();
        for (Unit unit : units) {
            if (unit.getValue().equals(val)) {
                return unit;
            }
        }
        return LBS;
    }
}

问题是,当我尝试反序列化上述 JSON 时,我收到此错误消息:“无法识别的字段“LBS”(类 abcdWeight),未标记为可忽略”异常堆栈跟踪如下:

Caused by: org.codehaus.jackson.map.exc.UnrecognizedPropertyException: Unrecognized field "LBS" (Class a.b.c.d.Weight), not marked as ignorable
 at [Source: java.io.ByteArrayInputStream@20172017; line: 1, column: 464] (through reference chain: a.b.c.d.MyRequest["blah"]->a.b.c.d.AnotherType["wt"]->a.b.c.d.Weight["LBS"])
    at org.codehaus.jackson.map.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:53)
    at org.codehaus.jackson.map.deser.StdDeserializationContext.unknownFieldException(StdDeserializationContext.java:267)
    at org.codehaus.jackson.map.deser.std.StdDeserializer.reportUnknownProperty(StdDeserializer.java:673)
    at org.codehaus.jackson.map.deser.std.StdDeserializer.handleUnknownProperty(StdDeserializer.java:659)
    at org.codehaus.jackson.map.deser.BeanDeserializer.handleUnknownProperty(BeanDeserializer.java:1365)

...

我的问题是:枚举的序列化 JSON 字符串是否正确?为了使枚举正确反序列化,我还应该包括(或注释)什么?

4

2 回答 2

6

我假设在public enum Unit代码块中,您的意思是Unit而不是WeightMeasurementUnit.

该类Weight只有 aweight和 a unit,因此如果您通过{"wt":100.5,"unit":"lbs"},它应该可以工作,因为 aunit只是一个没有价值的单位。因此,反序列化器无法解析{"LBS":3}Unit. 是3为了什么?

另一个问题是您的值是“lbs”,而您传递的是“LBS”。所以要么你需要标准化,要么你需要使用unit.getValue().equalsIgnoreCase(val)

于 2013-08-29T08:32:25.377 回答
4

我建议您将您的 jackson 版本更新为 2.7.0-rc2(也可能更早),然后按如下方式配置 ObjectMapper:

private ObjectMapper createObjectMapper() {
    final ObjectMapper mapper = new ObjectMapper();
    // enable toString method of enums to return the value to be mapped
    mapper.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING);
    mapper.enable(DeserializationFeature.READ_ENUMS_USING_TO_STRING);
    return mapper;
}

在您的枚举中,您只需覆盖 toString() 方法:

public enum Unit {
    KG,
    GM,
    LBS,
    OZ;

    // UPDATE: implicitly already the default so override not needed in this case
    @Override
    public String toString() {
        return name();
    }
}

您不需要任何注释或自定义反序列化程序。这将是将简单枚举映射到 json 的方法,反之亦然。

如果你的枚举应该从一个特殊的字符串映射,你必须添加一个值字段和一个构造函数,它分配这个字段并在 toString 方法中返回值。

public enum Unit {
    KG("kilogram"),
    GM("gram"),
    LBS("blah"),
    OZ("anything");

    Unit(final String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return value;
    }
}
于 2015-12-23T13:06:06.960 回答