Community contributed extensions

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:

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:

@Path("/hello")
public class Hello {
 
 @GET
 public String get(){
  return "Hello World\\n";
 }
 
}

Warning

This is beta-quality software, and not every RESTEasy feature will work. Let us know if you have anything that needs fixing.

Source code

Our source code repository is browsable on our Github project page.

Bugs

Expect many, since this is pre-release quality.