Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Explain the life cycle of JSP?
Explain the life cycle of JSP?
✍: Guest
Any JSP page goes through 7 phases in its entire lifecycle
Phase Name Description
Page translation The page is parsed and a Java file containing
the corresponding servlet is created.
Page compilation The Java file is compiled.
Load class The compiled class is loaded.
Create instance An instance of the servlet is created.
Call jspInit() This method is called before any other
method to allow initialization.
Call _jspService() This method is called for each request.
Call jspDestroy() This method is called when the servlet container
decides to take the servlet out of service.
2013-08-15, 1972👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - Did VB6 support multi-threading ? While VB6 supports multiple single-thre...
How To Escape Special Characters in SQL statements? - MySQL FAQs - Introduction to SQL Basics There ...
Give me the example of SRS and FRS SRS :- Software Requirement Specification BRS :- Basic Requiremen...
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
How To Use Subqueries with the IN Operator? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqu...