Can a RESTful service return both JSON and XML for the same resource, depending on the request header?

StackOverflow https://stackoverflow.com/questions/22362607

Domanda

I have a simple RESTful method which currently returns JSON representation of an object.

My question is more of from the architectural perspective and not completely technical.

Should a RESTful service be designed in such a way that it returns both JSON and XML at the same time?

As far as I know this is a bad practice and separate resources should be defined for this. One resource should return JSON data and other one XML.

Am I thinking it correctly?

È stato utile?

Soluzione

The same resource may return either XML or JSON depending upon the request, but it shouldn't return both at the same time. You will know which one to return based upon the request, so there is no need to generate both -- just generate the one you'll be returning.

Here is how you might choose to decide which to return. Evaluate in order, stopping when you've determined the format to return:

  1. If an extension has been added to the resource (GET /user/1234.json or GET /user/1234.xml), use that as the requested format.
  2. If an Accept header is set, use that header's value as the requested format.
  3. If there is a request body (as in the case of a POST), and the Content-Type header specifies JSON or XML, use that.
  4. Use a default format if none of the above apply (generally use JSON as your default unless your customers are generally still using XML).

Altri suggerimenti

No. The way you represent your resource should be defined by what your clients expect (there is a http-header to say what representations the client accept). This means your server should check what is the representation the current client accepts and send the response in this representation (or send a response that says he cannot represent the resource in that media-type)

Step 1: Add below dependency under dependencies section in pom.xml

enter image description here

Step 2: Go to your controller class (where mention @RestController) and add below :

For get method :
@GetMapping(path = "/getNews",produces = {MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE})
public getmethod
{
//your logic
}

same like for other method POST,PUT...
For post method :
@PostMapping(produces = {MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE} )
public postmethod
{
//your logic
}

Step 3: OUTPUT in POSTMAN
In header section add Key and value
For XML output add -> Key as Accept and Value as application/xml as below enter image description here For JSON output add -> Key as Accept and Value as application/json as below enter image description here

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top