I'm just not very fluent with Spring MVC as I'm
with JSF. In one of our organization's projects, we use Spring MVC and use
Jasper for reproting. We allow users to download a .PDF report. In JSF,
after writing the PDF bytes to the response stream along with
Content-Disposition header, I invoke responseComplete() on FacesContext
instance to tell JSF not to meddle with the reponse further.
How do I achieve the same with Spring MVC?
Right now we get a,
Code:java.lang.IllegalStateException at org.apache.catalina.connector.ResponseFacade.sendRedirect(ResponseFac ade.java:435)


Reply With Quote