How is a JSP page invoked and compiled?
Pages built using JSP technology are typically implemented using a translation phase that is performed once, the first time the page is called.
The page is compiled into a Java Servlet class and remains in server memory, so subsequent calls to the page have very fast response times.
Recent Comments