Does anyone have experience with making Cappuccino-based webapps that consume REST-based webservices from Spring? Any recommended tutorials? Or just Capuccino/AJAX tutorials? Any thoughts on this combination?
Cheers
Nik
|
Does anyone have experience with making Cappuccino-based webapps that consume REST-based webservices from Spring? Any recommended tutorials? Or just Capuccino/AJAX tutorials? Any thoughts on this combination? Cheers Nik
| |||||
feedback
|
|
With my company we have done some ground work on a similar architecture using Spring MVC to set up a restful service on the back-end and jquery on the client. The main thing that you need to remember here is that you're essentially building a contract first web service. Which means that the client should be totally decoupled from the server and vice versa. To the client it doesn't matter if you use Spring, Jersey or something completely different, to the server it doesn't matter if the client is a web-app, a mobile app. Since our backend code was using Spring it might be useful to you. | |||
feedback
|