Reputation: 21
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