Keeping and showing Jetty JSP source
Join the DZone community and get the full member experience.
Join For FreeFYI... Did you know that you can keep the generated source files for your JSPs when running Jetty from maven?
Just add this to your web.xml file:
<servlet id="jsp"> <servlet-name>jsp</servlet-name> <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class> <init-param> <param-name>keepgenerated</param-name> <param-value>true</param-value> </init-param> </servlet>
Then your JSP generated source, along with the class file, is located in target/tmp.
From http://www.rimple.com/tech/2011/9/27/keeping-and-showing-jetty-jsp-source.html
Jetty (web server)
Opinions expressed by DZone contributors are their own.
Comments