这是我的 JSON:
{
"i": 53691,
"s": "Something" }
这是我的模型:
public class Test() {
private int i;
private String s;
public setInt(int i){ this.i = i; }
public setString(String s){ this.s = s; }
// getters here
}
这是我的服务器响应类:
public class ServerResponse(){
private Test;
public void setTest(Test test){ this.test = test;}
public Test getTest(){ return Test; } }
当我做:
ObjectMapper mapper = new ObjectMapper();
mapper.readValue(json, serverResponse);
我遇到了一个例外,例如:
JsonProcessingException:无法识别的字段“i”(MyClass 类),未标记为可忽略
请指教。