I want to make a Post to Jersey Rest service. What is the standard way of doing this?
@Post @Consumes(MediaType.Application_xml) public Response method(??){}
|
|
Suppose you have a java bean say an employee bean such as. Add the tags to tell
@XmlRootElement tells that this will be the main tag in xml. In this case you can specify a name for the main tag as well. @XmlElement tells that this would be the sub tag inside the root tag Say, the sample xml that will come as a part of body in the post request will look something like
When writing a webservice to acccept such an xml we can write the following method.
On calling this service, you will get the following xml as part of the response.
using @Xml...annotations, it becomes very easy to unmarshal and marshal the request and response objects. Similar approach can be taken for JSON input as well as JSON output by just using the MediaType.APPLICATION_JSON instead of APPLICATION_XML So for an xml as input, you can get an xml as an output as part of the http response. Hope this helps. |
|||
|
|
|
Below is an example of a post operation:
|
|||
|
|