2 回答
TA贡献1831条经验 获得超10个赞
您不需要自定义序列化程序。您可以利用@JsonAnyGetter注释生成包含所需输出属性的地图。
下面的代码采用上面的示例 pojo 并生成所需的 json 表示。
首先,您已使用 注释所有 getter 方法,@JsonIgnore以便 jackson 在序列化期间忽略它们。将被调用的唯一方法是带@JsonAnyGetter注释的方法。
public class SimplePojo {
private String key ;
private String value ;
private int thing1 ;
private boolean thing2;
// tell jackson to ignore all getter methods (and public attributes as well)
@JsonIgnore
public String getKey() {
return key;
}
// produce a map that contains the desired properties in desired hierarchy
@JsonAnyGetter
public Map<String, ?> getForJson() {
Map<String, Object> map = new HashMap<>();
Map<String, Object> attrMap = new HashMap<>();
attrMap.put("value", value);
attrMap.put("thing1", thing1); // will autobox into Integer
attrMap.put("thing2", thing2); // will autobox into Boolean
map.put(key, attrMap);
return map;
}
}
TA贡献1860条经验 获得超9个赞
您需要使用writeObjectFieldStart方法来写入字段并JSON Object以相同的类型打开新的:
class SimplePojoJsonSerializer extends JsonSerializer<SimplePojo> {
@Override
public void serialize(SimplePojo value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
gen.writeStartObject();
gen.writeObjectFieldStart(value.getKey());
gen.writeStringField("value", value.getValue());
gen.writeNumberField("thing1", value.getThing1());
gen.writeBooleanField("thing2", value.isThing2());
gen.writeEndObject();
gen.writeEndObject();
}
}
添加回答
举报