Jasper in jetty throws IllegalStateException on getOutputStream but not on Tomcat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T15:13:09Z http://stackoverflow.com/feeds/question/608352 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/608352/jasper-in-jetty-throws-illegalstateexception-on-getoutputstream-but-not-on-tomcat 0 Jasper in jetty throws IllegalStateException on getOutputStream but not on Tomcat Mojo 2009-03-03T21:45:32Z 2009-05-22T15:00:03Z <p>I have a web application that's currently running under Tomcat 5.5.25. I'm attempting to port it to Jetty 6 to take advantage of the rapid refresh time for jsp and UI changes especially.</p> <p>Since my JSP files are JSP 2.0 compliant, I'm running jetty under maven using the configuration suggested on the maven jetty plugin web site. This config loads apache's jasper JSP compiler version 5.5.15. (Also available in the maven respository is 5.5.23, but it has the same result.)</p> <p>Under jetty, my home page, which is configured using tiles, blows up with IllegalStateException in ServletResponseWrapperInclude.getOutputStream(). Obviously under Tomcat it doesn't do this.</p> <p>I'm struggling to understand what it is about our tiles and includes that would cause jasper to complain in jetty and not in Tomcat.</p> http://stackoverflow.com/questions/608352/jasper-in-jetty-throws-illegalstateexception-on-getoutputstream-but-not-on-tomcat/679535#679535 0 Answer by Mojo for Jasper in jetty throws IllegalStateException on getOutputStream but not on Tomcat Mojo 2009-03-24T22:39:51Z 2009-03-24T22:39:51Z <p>This may not be much of an answer, but we discovered that this error happens when Tiles includes an empty tile.</p> <p>By going through our master tile JSPs and removing references to empty tiles, we make this problem go away.</p>