"Chen, Gin" <[EMAIL PROTECTED]> writes: > Oh.. i didnt realize that. I always thought that the JSP would be translated > to a Servlet and from there the regular javac would be involked (like if it > were a Servlet). I didnt know there were tools to by pass the conversion > phase. > I always use the keepgenerated option so I guess that's why its ingrained > like that for me. :P > I guess that native compiler could really be helpful in the initial request > to a jsp though since it would probably speed up that compile time a > bit.
It also makes certain optimizatins possible that wouldn't be possible if you translate to a java source file first. An example is tail call elimination during recusion. That's why some other JSP replacement tools use it as their approach, for example: Apache's velocity project. Nic ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
