This example demonstrates how to get an extended WADL generated by jersey.
The description of what‘s done here you’ll find in the jersey 1 wiki.
The difference in configuration against jersey 1.x is in property configuring the custom WadlGeneratorConfig. Instead of property key ‘com.sun.jersey.config.property.WadlGeneratorConfig’ use the property key ‘jersey.config.server.wadl.generatorConfig’. Also check pom.xml of this sample to see other configuration differences.
Just as a pointer at which files you might have a look:
The mapping of the URI path space is presented in the following table:
URI path | Resource class | HTTP methods | Description |
---|---|---|---|
/items | ItemsResource | POST | Creates a new item and allocates a new unique URI for it, the new URI is returned back in the Location header |
/items/{id} | ItemResource | GET | Returns an item with the id={id} |
/items/{id}/value/{val} | ItemResource | PUT | Updates the value of the item with the id={id} with the new value {val} |
If you are working with Jersey GlassFish update center module installed into your existing GlassFish instance, you will need to follow instructions at the module README file in order to deploy the example.
Otherwise, you can run the example using embedded GlassFish as follows:
You can run the example using Grizzly as follows:
mvn clean package exec:java
Get the generated wadl via curl:
curl http://localhost:8080/extended-wadl-webapp/application.wadl
Or from a web browser, visit:
http://localhost:8080/extended-wadl-webapp/application.wadl