我是一個POJO類Attribute
寫JsonDeserialzer
:JsonNode對象?
public class AttributeDeserializer extends JsonDeserializer<Attribute> {
@Override
public Attribute deserialize(JsonParser jp, DeserializationContext ctxt)
throws IOException, JsonProcessingException {
JsonNode node = jp.getCodec().readTree(jp);
String name = node.get("name").asText();
//String value = node.get("value").asText();
Attribute attr = new Attribute();
attr.setName(name);
attr.setValue(value);
return attr;
}
Attribute
類有兩個變量name
和value
其中名稱是String
類型和價值類型Object
。
我知道使用
node.get("name").asText()
擺脫JsonNode
的字符串值,但值是Object
類型也可以是一個列表,字符串或任何東西。
我該如何在解串器中創建Attribute
對象?
屬性類:
public class Attribute {
protected String name;
protected Object value;
public String getName() {
return name;
}
public void setName(String value) {
this.name = value;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}
可能是這樣回答先前提出的問題可以幫助你http://stackoverflow.com/a/28384407/ 827204 – Srikanta
爲什麼要實現解串器?爲什麼不讓傑克遜的默認? –
@UriShalit:我正在更改名稱屬性的值,雖然它沒有在上面的代碼中提供 –