User guide for Tapestry-resteasy module
tapestry-resteasy provides integration with Tapestry 5 and JBoss' RESTEasy, an implementation JAX-RS (Java API for RESTful Web Services). JAX-RS is a very nice little spec and if you know what it is about, the following should be very easy to understand. Otherwise, read up on it at Jersey's overview (the reference implementation) or the actual specification. JBoss' RESTEasy provides a few more features over the reference implementation.
Outline
Add the tapestry-resteasy dependency to your pom.xml
To use tapestry-resteasy (an independent module of Tynamo), you need to add the following dependency to your pom.xml:
No need to edit your web.xml.
tapestry-resteasy integrates with the Tapestry's HttpServletRequest pipeline.
Create a package named "rest" for your rest services.
tapestry-resteasy will scan the "rest" package and automatically add singleton resources to the configuration.
If you want to add extra packages, besides InternalConstants.TAPESTRY_APP_PACKAGE_PARAM + ".rest", to be scanned for annotated REST resource classes you can contribute your package names to the ResteasyPackageManager.
Code your singleton resource.
Good practices:
- Name the resource class using the entity name followed by the word "Resource".
- The @Path should be the entity name in lowercase.
Add a provider library to your pom.xml
 | By default tapestry-resteasy does not includes any marshaller/unmarshaller dependency. You will need to manually add the dependency to your pom.xml |
The previous examples use the JSON marshaller/unmarshaller provided by the resteasy-jettison-provider library. This provider allows you to marshall JAXB annotated POJOs to and from JSON, it wraps the Jettison JSON library to accomplish this.
If you don't need JAXB and only you only need JSON support, you can use the JSON marshaller/unmarshaller provided by the resteasy-jackson-provider library. I personally find Jackson's output format more intuitive than the format provided by either BadgerFish or Jettison.
You could use JAXB and Jackson together but be aware of the possible conflicts with the JAXB providers
Contribute singleton resources
If the rest services autodiscovery is not enough for you, you can manually contribute singleton resources in your AppModule:
 | Since the upgrade to Tapestry 5.3 and the move from Javassist to Plastic your JAX-RS annotations must be on the service interface or RESTEasy will not be able to find them. |
Live class reloading
 | Available since tapestry-resteasy 0.2.1! |
Reloading is limited to services that can be proxied, so to enable live class reloading for your REST services you need to create them as regular Tapestry IoC services with an interface and an implementation of that interface. You then have the option to leave them both in the autodiscovery package or explicitly bind them as services and contribute them to javax.ws.rs.core.Application.class. Read more about how service implementation reloading works in: http://tapestry.apache.org/reload.html
Here is an example from the tapestry-resteasy test suite.
Enjoy
version table
| tapestry-resteasy | Tapestry | RESTEasy | notes: |
|---|
| 0.0.1 | 5.1.x | 1.1.GA | see tapestry-resteasy-0.0.1 guide |
| 0.2.1 | 5.2.x | 2.0.1.GA | |
| 0.3.0 | 5.3.x | 2.3.0.GA | |
| 0.3.1 | 5.3.x | 3.0-beta-4 | |