I'm creating a rest service with spring and want to offer a json response:
@RequestMapping(value = "/test",
method = RequestMethod.GET,
produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
public MyResponse content() {
return rsp;
}
MyResponse may contain null values which should not be returned in the JSON response (these params should just be removed).
@XmlRootElement
class MyResponse {
}
Is that possible?
@RestControllerannotation.