I'm working on upgrading Struts2 to 2.5-GA and I'm running into an issue where the JSP renders:
java.io.IOException: Stream closed
org.apache.jasper.runtime.JspWriterImpl.ensureOpen(JspWriterImpl.java:200)
org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:105)
org.apache.jasper.runtime.JspWriterImpl.flush(JspWriterImpl.java:167)
org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:923)
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:647)
org.apache.struts2.result.ServletDispatcherResult.doExecute(ServletDispatcherResult.java:135)
org.apache.struts2.result.StrutsResultSupport.execute(StrutsResultSupport.java:208)
I've isolated this to when the JSP contains any tiles tags. The taglib is defined in the
JSP as follows:
<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
If I comment out the use of the tiles tag, the page renders just fine. We were using Tiles
3.0.5 with the prior Struts2 2.3.24 release, so I'm not clear what I need to change.
Thoughts, suggestions?
Chris
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org
|