java - jackson :无法识别的属性异常

标签 java json jackson jackson-databind

我有以下类(class):

LocationCustomDataItem.java

public class LocationCustomDataItem {

private String attributeNumber;
private String attributeLabel;
private String attributeValue;

public LocationCustomDataItem() {

}

public LocationCustomDataItem(final String attributeNumber, final String attributeLabel, final String attributeValue) {
    this.attributeNumber = attributeNumber;
    this.attributeLabel = attributeLabel;
    this.attributeValue = attributeValue;
}
/**
 * @return the attributeNumber
 */
public String getAttributeNumber() {
    return attributeNumber;
}
/**
 * @param attributeNumber the attributeNumber to set
 */
public void setAttributeNumber(String attributeNumber) {
    this.attributeNumber = attributeNumber;
}
/**
 * @return the attributeLabel
 */
public String getAttributeLabel() {
    return attributeLabel;
}
/**
 * @param attributeLabel the attributeLabel to set
 */
public void setAttributeLabel(String attributeLabel) {
    this.attributeLabel = attributeLabel;
}
/**
 * @return the attributeValue
 */
public String getAttributeValue() {
    return attributeValue;
}
/**
 * @param attributeValue the attributeValue to set
 */
public void setAttributeValue(String attributeValue) {
    this.attributeValue = attributeValue;
}

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(this, false);
}

@Override
public boolean equals(Object obj) {
    return EqualsBuilder.reflectionEquals(this, obj);
}

@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE, false);
}

LocationCustomDataAttributes.java

public class LocationCustomDataAttributes {

private final List<LocationCustomDataItem> locationCustomDataItems;

public LocationCustomDataAttributes() {
    this.locationCustomDataItems = new ArrayList<>();
}

public LocationCustomDataAttributes(final List<LocationCustomDataItem> locationCustomDataItems) {
    this.locationCustomDataItems = locationCustomDataItems;
}

/**
 * @return unmodifiable locationCustomDataItems list
 */
public List<LocationCustomDataItem> getLocationCustomDataItems() {
    return Collections.unmodifiableList(this.locationCustomDataItems);
}

/**
 * Adds LocationCustoDataItem to internal collection
 * 
 * @param item LocationCustomDataItem to add to item list
 */
public void addItem(final LocationCustomDataItem item) {
    this.locationCustomDataItems.add(item);
}


@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(this, false);
}

@Override
public boolean equals(Object obj) {
    return EqualsBuilder.reflectionEquals(this, obj);
}

@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE, false);
}

和这个测试 json:

{
   "locationCustomDataAttributes" : {
      "locationCustomDataItems" : [ {
         "attributeLabel" : "testLabel1",
         "attributeNumber" : "testNumber1",
         "attributeValue" : "testLabel1"
      }, {
         "attributeLabel" : "testLabel2",
         "attributeNumber" : "testNumber2",
         "attributeValue" : "testLabel2"
      } ]
   }
}

我尝试使用 ObjectMapper 将 json 转换为对象,但它在“locationCustomDataAttributes”周围抛出无法识别的PropertyException:

MapperTest.java

@Test
public void test() throws JsonParseException, JsonMappingException, IOException {
    ObjectMapper om =new ObjectMapper();

    LocationCustomDataAttributes actual = om.readValue(json, LocationCustomDataAttributes.class);

    LocationCustomDataAttributes expected = new LocationCustomDataAttributes();
    expected.addItem(new LocationCustomDataItem("testNumber1", "testLabel1", "testValue1"));
    expected.addItem(new LocationCustomDataItem("testNumber2", "testLabel2", "testValue2"));

    assertThat(actual).isEqualTo(expected);
}

错误信息:

com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "locationCustomDataAttributes" (class com.lmig.ci.fnol.transformer.domain.LocationCustomDataAttributes), not marked as ignorable (one known property: "locationCustomDataItems"])
 at [Source: {"locationCustomDataAttributes" : {"locationCustomDataItems" : [ {"attributeLabel" : "testLabel1","attributeNumber" : "testNumber1","attributeValue" : "testLabel1"},{"attributeLabel" : "testLabel2","attributeNumber" : "testNumber2","attributeValue" : "testLabel2"}]}}; line: 1, column: 36] (through reference chain: com.lmig.ci.fnol.transformer.domain.LocationCustomDataAttributes["locationCustomDataAttributes"])
at com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:62)
at com.fasterxml.jackson.databind.DeserializationContext.handleUnknownProperty(DeserializationContext.java:833)
at com.fasterxml.jackson.databind.deser.std.StdDeserializer.handleUnknownProperty(StdDeserializer.java:1096)
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownProperty(BeanDeserializerBase.java:1467)
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownVanilla(BeanDeserializerBase.java:1445)

//等等...`

我没有直接使用 Jackson 的大量经验,因此我还没有对类本身进行注释,但从之前的工作(例如使用 Spring Controller )来看,转换会自动发生,而不需要在类上进行注释。在这种情况下,情况看起来并非如此,我在类中缺少什么,或者当前的类结构是否由于某种原因不适合 Jackson 自动转换?

最佳答案

om.readValue(json, LocationCustomDataAttributes.class)

此行要求解析 JSON 文档中的 LocationCustomDataAttributes 对象。但 JSON 实际上包含一个包装对象,该对象的属性可以解析为 LocationCustomDataAttributes 对象。解决方案:

  1. 为包装对象创建读取器。例如

    ObjectReader reader = om
        .readerFor(LocationCustomDataAttributes.class)
        .withRootName("locationCustomDataAttributes");
    LocationCustomDataAttributes actual = reader.readValue(json);
    
  2. 定义包装类

    class AttributesWrapper {
        private LocationCustomDataAttributes locationCustomDataAttributes;
        // add getters, setters, constructors etc
    }
    

    然后解析它:

    LocationCustomDataAttributes actual = om
        .readValue(json, AttributesWrapper.class)
        .getLocationCustomDataAttributes();
    

关于java - jackson :无法识别的属性异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48709025/

相关文章:

javascript - 使用 JSON 数据用数据库对象填充 Google map

spring - Jackson:当调用不同的 Rest EndPoint 时,同一实体上有多个序列化器

java - 为什么 UTF-8 和 UTF-16 编码的字符串在 Java 中打印不一样?

java - 如何理解PriorityQueue?

java - JBOSS 控制台日志记录,在生产环境中推荐吗?

java - swagger-codegen 客户端 : How to include jackson annotations on models

java - 如何通过多个属性使用子类型将 JSON 反序列化为类?

java - 如何将以下字符串转换为日期对象?

json - 如何在 JSON 文件中翻译 Laravel 的默认验证错误?

json - 将多个 JSON 与 id 组合