我正在通过网络服务阅读以下 json。有没有办法将 json 读入三个合适的 POJO?POJO 由 hibernate 生成,用于与数据库通信。
基本上我需要将person
json读入一个Perso
n POJO,将pets
json读入一组Pet
POJO,将toy
json读入一组Toy
POJO。
JSON
{
"person":{"first_name":"John", "last_name":"Smith"},
"pets":[{"species":"dog", "name":"Adama"}, {"species":"cat", "name":"Benton"} ],
"toys":[{"car":"corvet", "color":"black"}, {"action_figure":"hancock", "height":"1ft"} ]
}
网络服务
@Post
public Representation readForm(Representation representation) {
try {
Person aPerson = …
Set<Pet> petSet = …
Set<Toy> toySet = ...
….