特定のJSON文字列をJavaオブジェクトに変換する必要があります。JSON処理にJacksonを使用しています。入力JSONを制御できません(Webサービスから読み取りました)。これは私の入力JSONです:
{"wrapper":[{"id":"13","name":"Fred"}]}
以下に、簡単な使用例を示します。
private void tryReading() {
String jsonStr = "{\"wrapper\"\:[{\"id\":\"13\",\"name\":\"Fred\"}]}";
ObjectMapper mapper = new ObjectMapper();
Wrapper wrapper = null;
try {
wrapper = mapper.readValue(jsonStr , Wrapper.class);
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("wrapper = " + wrapper);
}
私のエンティティクラスは:
public Class Student {
private String name;
private String id;
//getters & setters for name & id here
}
私のラッパークラスは、基本的に私の生徒のリストを取得するためのコンテナーオブジェクトです。
public Class Wrapper {
private List<Student> students;
//getters & setters here
}
このエラーが繰り返し発生し、「ラッパー」が返されますnull
。何が欠けているのかわかりません。誰かが助けてくれますか?
org.codehaus.jackson.map.exc.UnrecognizedPropertyException:
Unrecognized field "wrapper" (Class Wrapper), not marked as ignorable
at [Source: java.io.StringReader@1198891; line: 1, column: 13]
(through reference chain: Wrapper["wrapper"])
at org.codehaus.jackson.map.exc.UnrecognizedPropertyException
.from(UnrecognizedPropertyException.java:53)
Map dummy<String,Student> = myClientResponse.getEntity(new GenericType<Map<String, Student>>(){});
それからStudent myStudent = dummy.get("wrapper");