Wednesday, October 19, 2005

JSP Page LifeCycle

When the container looks at your JSP Page, it starts with

  1. Translating the JSP Page into Java source code
  2. Compiling it into full-fledged java servlet class file
  3. Loading the class
  4. creating instance
  5. calling the jspInit method
  6. calling the _jspService method and finally
  7. calling the jspDestroy method

0 Comments:

Post a Comment

<< Home