I created an application that uses ExtJS, which connects through Ajax requests to the RESTful Jersey service. Everything works well in this application, but now I want to put it in ExtGWT.
Since ExtGWT already has RPC servlets for handling client-server communications, where does Jersey fit in this scenario? Should I no longer use it and instead connect from the GWT servlets directly to the maintenance methods?
In case I would like to use Jersey, is there a way to have the same support for serialization / deserialization as with GWT RPC? “I assume that I will no longer use the GWT RPC in this scenario.”
I would prefer Jersey because it has a REST implementation, while GWT RPC does not, I think. In the future, I also plan to access RESTful Jersey services from Android / iOS applications, and the GWT RPC will not fit well into this scenario.
Thank!
source
share