Is there a built-in mechanism in Spring that would allow me to display an externally rendered PDF as a view?
I've fetching PDF via a webservice (returned an attached DataHandler) so I'm not looking to subclass AbstractPdfView to render PDF.
This isn't a hard problem to solve on its own; it would be easy enough just to write the PDF to the ServletOutputStream. However, for consistency's sake I'd like to stay with the Spring controller classes which return a ModelAndView which means writing my own subclass of AbstractView to just write the PDF to a ServletOutputStream. Doing so is no big deal, but I don't want to recreate something that might already exist somewhere else within Spring.