Faster JSP development
Usually JSP is first translated to regular Java code and then compiled into a Java servlet. JSP Weaver eliminates the Java generation and compilation stage by interpreting the JSP files on-the-fly. This reduces the time taken to reload a JSP up to 50 times bringing it from seconds down to milliseconds.
Features
Supports JSP 1.2 and 2.0. Tested on BEA Weblogic, Oracle Application Server, Tomcat, Jetty
Performance
Depending on the complexity of the pages, development turn-around can decrease up to 30 seconds.
.class

.java

.jsp

Faster turnaround
Why should developers wait for JSP compilation if JSP files can be interpreted immediately?


