Monica Guerra wrote: > Please help me with that question: > Is a jsp page compiled a SERVLET? > The jsp page compiled, the .class is a SERVLET
Every JSP page is transformed into a Java source file for a servlet (done by Jasper in Tomcat) and then compiled into a Java class by "javac". Then it is deployed. You'll find both source and class in $CATALINA_HOME/work/$VHost/ Nix. -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
