Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play Framework for Scala - RESTful Web Service [closed]

I looked through Play framework and I am struggling to find a good documentation/tutorial for how to do a RESTful web service in Play ver. 2+.

Please recommend any reference if you have. Googling on keywords containing "Play" and "Rest" does not give me much :-)

like image 574
Edmon Avatar asked Sep 12 '12 21:09

Edmon


2 Answers

I'm building a backbone skeleton application, and for the backend webservice I used play 2.0 with scala.

It implements a nice json rest web service with cors, using an in-memory database

Have a look at it at:

https://github.com/opensas/BackboneBootstrap/tree/master/webservice

It support a couple of nice features, like filtering, paging, ordering and advanced queries...

like image 66
opensas Avatar answered Sep 30 '22 04:09

opensas


You should check play-mini :

https://github.com/typesafehub/play2-mini

like image 43
Roch Avatar answered Sep 30 '22 02:09

Roch