JSP Page LifeCycle
When the container looks at your JSP Page, it starts with
- Translating the JSP Page into Java source code
- Compiling it into full-fledged java servlet class file
- Loading the class
- creating instance
- calling the jspInit method
- calling the _jspService method and finally
- calling the jspDestroy method
0 Comments:
Post a Comment
<< Home