Mari
Mari

Reputation: 21

Spring Data Rest supporting json and xml

Is it possible to have spring data rest repositories supporting both json and xml at the same time? I was hoping that something like that would work (but it doesn't unfortunately):

@RequestMapping(produces = { "application/json", "application/xml" })
@RepositoryRestResource

Upvotes: 2

Views: 1273

Answers (1)

shazin
shazin

Reputation: 21883

What you need is to configure content negotiation in Spring Web MVC.

Follow this blog post for more information.

Upvotes: 2

Related Questions