Hello All, If anyone know how to make jsps precompiled . I mean when a servlet engine starts it automatically compiles jsps into servlet and load the eventual servlet class files . I have got this tag from web.xml in servlet 2.3 specs but not sure how to use this.
/********************************************/ The servlet element contains the declarative data of a servlet. If a jsp-file is specified and the load-on-startup element is present, then the JSP should be precompiled and loaded. Used in: web-app --> <!ELEMENT servlet (icon?, servlet-name, display-name?, description?, (servlet-class | jsp-file), init-param*, load-on-startup?, run-as?, security-role-ref*)> <!-- /********************************************/ Any help would be greate for me . Awais Bajwa Software Engineer i2c Inc . www.i2cinc.com
boyet silverio
Ranch Hand
Joined: Aug 28, 2002
Posts: 173
posted
0
try something similar to the ff <web-app> <servlet> <servlet-name>thePage</servlet-name> <jsp-file>/thePage.jsp</jsp-file> <load-on-startup>1</load-on-startup> </servlet> ... hope this helps. [ January 16, 2003: Message edited by: boyet silverio ]