I'm having a simple REST controller using spring.
How could GZIP response of the returned application/xml stream be enabled?
@RestController
public class MyRest {
    @RequestMapping(method = RequestMethod.GET,
            produces = MediaType.APPLICATION_XML_VALUE)
    @ResponseBody
    public ComplexRsp test() {
        //...
    }
}
When using soap+wsdl approach, there would be the simple @GZIP annotation on the service class. How can I achieve the same for REST?