Jersey (1.19.1)-Building responses

Source: Internet
Author: User

Sometimes it is necessary to return additional information in response to a HTTP request. Such information May is built and returned using Response and response.responsebuilder. For example, a common RESTful pattern for the creation of a new resource are to support a POST request that returns a 201 ( Created) status code and a location header whose value are the URI to the newly Created resource. This could be achieved as follows:

@POST @consumes ("Application/xml")  Public Response Post (String content) {    = ...    Create (content);     return response.created (Createduri). build ();}

In the above no representation produced are returned, this can being achieved by building a entity as part of the response as follows:

@POST @consumes ("Application/xml")  Public Response Post (String content) {    =    ... = Create (content);     return response.created (Createduri). Entity (createdcontent). build ();}

Response Building provides other functionality such as setting the entity tags and last modified date of the representation .

Jersey (1.19.1)-Building responses

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.