Iām learning the best way to create a Restful web service in a Google application. My ultimate goal is to get the Android app to call the GAE web service to publish and retrieve data. At the moment, I'm not sure what the best approach is.
What I know at the moment is Spring MVC 3 provides the ability to create a web service, but does not provide a full implementation of JAX-RS. I also read several blogs that talk about how Spring and Restlet can be combined together. On the other hand, I read that I can only use Restlet in GAE. I would also like to provide an easy web interface for users to view their published data.
So my questions are these. 1. Should I just use Restlet. 2. Should I just use Spring MVC to provide my Restful web service. 3. Should I use Spring and Remlet together.
At this point, I think I should invest my time in Restlet, because this is the best approach for calling web services in Android. I also discuss if Spring MVC just killed.
Any thoughts would be helpful.
source share