특정 JSON 문자열을 Java 객체로 변환해야합니다. JSON 처리에 Jackson을 사용하고 있습니다. 입력 JSON을 제어 할 수 없습니다 (웹 서비스에서 읽었습니다). 이것은 내 입력 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");