Hi all, Somebody can say me how Deserialize complex Json Data?
For example i have a Java class
Person {
String name;
Book book
}
and then JSON response by Spring Service is "name":Marco,"book":{"id":1296257107,"title":"Lord of the Rings","Author":"J.R.R. Tolkien\n"},
when i use JsonConverter i have an exception.
With source i found code line number
case OBJECT:
// TODO: implement nested objects
throw new UnsupportedOperationException("Nested Json Objects not yet supported.");
Then i think that this converter cannot deserialize complex JSON data, but is there a suitable solution?
Thanks