java – Jackson:在自定义字段JsonDeserializer中获取整个对象

我有这门课:

@JsonIgnoreProperties(ignoreUnknown = true)
public class VehicleRestModel implements RestModel<Article> {

    @JsonProperty("idVehicle")
    public String id;

    public String name;
}

我从REST API获取此JSON:

[
  { "idVehicle" : "1234DHR", "tm" : "Hyundai", "model" : "Oskarsuko"},
  //more vehicles
]

我希望我的模型的字段名称是JSON的字段tm和模型连接.我虽然使用了JsonDeserializer但是,我怎样才能获得整个JSON对象?

class MyDeserializer implements JsonDeserializer<String, String> {

    @Override
    public String deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
        // I need the entire JSON here, in order to concatenate two fields
    }
}

谢谢!

最佳答案 如果我理解你的问题,你可以让2个setter在同一个私有字段上工作,然后你可以用@JsonProperty而不是字段来标记setter.

这可以帮到你: @JsonProperty annotation on field as well as getter/setter

您也可以使用@JsonGetter(“var”)和@JsonSetter(“var”)而不是@JsonProperty.

编辑:好的,一个解决方案.这是我提交的最丑陋的代码,但如果你想要一个快速的东西,你不能真正修改POJO原始界面(字段,getter)

public class VehicleRestModel {

    private String concatValue = "";
    private int splitIndex;   

    @JsonSetter("var1")
    public setVar1(String var1){ concatValue = var1 + concatValue.substring(splitIndex,concatValue.length()); ; splitIndex = var1.length(); }
    @JsonSetter("var2")
    public setVar2(String var2){ concatValue = concatValue.substring(0,splitIndex) + var2; }

}

如果您在意,请注意空值,因为它们会在此演示代码中作为文字附加.

点赞