I am probably missing something obvious....
Does SmartGWT have a way to map the return values
from a DSRequest into POJOs on the server side?
...
DSResponse queryResponse = queryRequest.execute();
List<MyPojo> result = queryResponse.getRecords();
I am trying to avoid hibernate and spring as it is a simple
implementation....
It's pretty much the reverse of JSTranslater.
Does SmartGWT have a way to map the return values
from a DSRequest into POJOs on the server side?
...
DSResponse queryResponse = queryRequest.execute();
List<MyPojo> result = queryResponse.getRecords();
I am trying to avoid hibernate and spring as it is a simple
implementation....
It's pretty much the reverse of JSTranslater.
Comment