我一直在尝试评估 GWT Autobean 功能以将 JSON 对象解码/编码为域对象以进行 REST 调用。
按照示例:http ://code.google.com/p/google-web-toolkit/wiki/AutoBean#Quickstart
我能够将单个 JSON 对象转换为域对象:
AutoBean<Person> personBean = AutoBeanCodex.decode(factory, Person.class, JsonResources.INSTANCE.json().getText());
其中 JsonResources.INSTANCE.json() 返回一个 JSON 字符串。
但是,我没有成功从 JSON 转换 Person 对象列表。
如果有人有这方面的例子,这会有所帮助吗?
谢谢!