Hi....
I know that in JSP technology there are a few steps:
When a client makes a request to a JSP page this page is sent to the JSP Servlet Engine who makes the following steps:
-if the JSP file has been called for the first time:
- the JSP file is parsed
-the next step is to generate a special Servlet source code from the JSP file. All the HTML required is converted to println statements.
-the Servlet source code is compiled into a class.
-the Servlet is instantiated, calling the init method
-the service method is called.
-HTML from the Servlet output is sent via the Internet.
-HTML results are displayed on the userâs web browser.
The generated servlet is recompiled and reloaded only if you modify the source code for the JSP.
So the Container manages your modifications in your JSP page
|