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, 2210👍, 0💬
Popular Posts:
Can you explain in brief how can we implement threading ? Private Sub Form1_Load(ByVal sender As Sys...
What are some advantages and disadvantages of Java Sockets? Advantages of Java Sockets: Sockets are ...
Have you ever worked with Microsoft Application Blocks, if yes then which? Application Blocks are C#...
Can event’s have access modifiers ? Event’s are always public as they are meant to serve every one r...
How To Create an Add-to-Google-Reader Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS ...