how to return the correct representation based on URI
example
/text.json should return json
/text.xml should return xml
/text should return plain text
All these are mapped to the same method
@GET public Contact getContacts() {
}
|
|
|
The answer can be found in this post: http://jersey.576304.n2.nabble.com/extension-custom-negotiation-td3078866.html Essentially you configure a ResourceConfig https://jersey.dev.java.net/nonav/apidocs/1.1.0-ea/jersey/com/sun/jersey/api/core/ResourceConfig.html You need to extend an implementation of ResourceConfig [1] and override the media type mappings method. For example you can do the following:
and you can register your "MyResourceConfig" as described here: https://jersey.dev.java.net/documentation/1.1.0-ea/user-guide.html#d4e115 In the above example your web.xml would need to container:
|
|||
|
|