I am using Eclipse Indigo with runjettyrun plugin (latest). The webapp deploys successfully, but on non-trivial page I get a JSP custom tag compilation error.
I am getting the following JSP compilation error:
java.lang.IllegalStateException: STREAM
at org.eclipse.jetty.server.Response.getWriter(Response.java:683)
I want to look at the java file that got created from the Tag file. In the stacktrace, I can see that the Tag is being compiled to a file name:
xyz_Tag.java
I would like to view this java file. Any idea where I can find it?
you can instruct Jetty to keep generated java source files. There are many ways to configure this. Easiest way to do it is passing init parameter keepgenerated as true for org.apache.jasper.servlet.JspServlet in web.xml.
More details you can find in: http://wiki.eclipse.org/Jetty/Howto/Configure_JSP