I have a PDF document generated in the backend. I want to return this using Spring MVC REST framework. What should the MarshallingView and ContentNegotiatingViewResolver look like?
Based on a sample I found, the controller would have this as the return:
return new ModelAndView(XML_VIEW_NAME, "object",
byteArrayResponseContainingThePDFDocument);
-thank you.
You can define your method to take in explicit
HttpServletRequest
andHttpServletResponse
and stream to the HttpServletResponse directly, this way: