Home Blog 2008 01 27 Zeroturnaround-releases-jsp-weaver-10 ZeroTurnaround Releases JSP Weaver 1.0

 
 

ZeroTurnaround Releases JSP Weaver 1.0
Posted on: April 3, 2006 at 12:00 AM
James Strachan discusses how Java Business Integration can help organizations integrate their siloed, vertical applications in a standard way.

JSPWeaver interprets the JSP markup on-the-fly instead of producing and compiling Java code. This reduces JSP reload times in development from tens of seconds to milliseconds.

The final release incorporates performance and stability improvements. JSP Weaver now supports the full JSP standard including common syntax, XML syntax and Java scriplets and is completely container-agnostic.

Installing JSP Weaver is as easy as dropping a JAR into WEB-INF/lib and registering the servlet in web.xml:

 <servlet>
    <servlet-name>weaverServlet</servlet-name>
    <servlet-class>
    com.zeroturnaround.jspweaver.JspInterpretingServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>weaverServlet</servlet-name>
    <url-pattern>*.jsp</url-pattern>
  </servlet-mapping>

Download it from ZeroTurnaround and give it a try.

Disclaimer: JSP Weaver is commercial software with a free trial for 21 days and developer seat cost at 49$.

Related Tags for ZeroTurnaround Releases JSP Weaver 1.0:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.