7
我一直在嘗試評估GWT Autobean功能,將JSON對象解碼/編碼爲REST調用的域對象。GWT Autobean - 如何處理列表?
繼例如: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對象列表。
這將是有益的,如果有人有這樣的例子?
謝謝!
+1的示例代碼;-) –
而要解決這個問題,而不改變JSON:'AutoBeanCodex.decode( factory,Result.class;「{\」persons \「:」+ json +「}」)。getPersons()' –
這是我在我的autobeans中使用的技術。但我想我會應用@ThomasBroyer製作的技術。 – Jonathan