Jackson:使用jackson将json字符串响应转换为pojo转换时过滤空值或空值

时间:2012-11-27 12:52:40

标签: json liferay jackson liferay-6 pojo

我正在使用杰克逊将jason的回应转换为pojo列表。以下是我得到的答复。

[

    {
        "code": "",
        "total": 24,
        "name": null
    },
    {
        "code": "",
        "total": 1,
        "name": "Test"
    }
]

我正在将它转换为Pojo列表。下面是我的pojo。

public class ItemCategory {

private String code;
private String name;
private String total;

public ItemCategory() {
}

public ItemCategory(final String code, final String name, final String total) {
    super();
    this.code = code;
    this.name = name;
    this.total = total;
}

/**
 * @return the code
 */
public String getCode() {
    return code;
}

/**
 * @param code
 *            the code to set
 */
public void setCode(final String code) {
    this.code = code;
}

/**
 * @return the name
 */
public String getName() {
    return name;
}

/**
 * @param name
 *            the name to set
 */
public void setName(final String name) {
    this.name = name;
}

/**
 * @return the count
 */
public String getTotal() {
    return total;
}

/**
 * @param count
 *            the count to set
 */
public void setTotal(final String total) {
    this.total = total;
}
}

一切正常。但我想删除要转换为pojo的值,其代码为空/空值。即“代码”:“”,或“代码”:null

我使用下面的jackson代码将json转换为pojo。

Object pojo = null;
try {
    pojo = mapper.readValue(jsonString, typeReference);
} catch (JsonParseException e) {
    throw new InvalidPojoException(e.toString(), e);
} catch (JsonMappingException e) {
    throw new InvalidPojoException(e.toString(), e);
} catch (IOException e) {
    throw new InvalidPojoException(e.toString(), e);
} catch (Exception e) {
    throw new InvalidPojoException(e.toString(), e);
}
return pojo;

使用以下代码将json对象。

(List<ItemCategory>) JsonParserUtil.toPojo(serviceResponse.getStringResponse(),new TypeReference<List<ItemCategory>>(){});

任何指针都会受到赞赏。

提前致谢。

1 个答案:

答案 0 :(得分:7)

你可能想要像这样注释你的bean类:

@JsonSerialize(
include=JsonSerialize.Inclusion.NON_NULL,
)

来源:JsonSerialize annotation javadoc