h1. About The RESTEasy Play! module allows you to define JAX-RS RESTful web services in the Play! Framework using RESTEasy. Usage Download and install the RESTEasy Play! module and add the following to your conf/application.conf: bc. module.resteasy=.../resteasy-play-module # This is the default path prefix for RESTEasy services # resteasy.path=/rest Then start writing JAX-RS resources which will be located at /rest/hello: bc. @Path("/hello") public class Hello { @GET public String get(){ return "Hello World\\n"; } } h1. Warning This is beta-quality software, and not every RESTEasy feature will work. Let us know if you have anything that needs fixing. h1. Source code Our source code repository is browsable on our "Github project page":http://github.com/Lunatech-OSS/RESTEasy-Play--module. h1. Bugs Expect many, since this is pre-release quality.