Explain JSP life cycle?
Answers were Sorted based on User's Feedback
Answer / qim2010
• Pre-translated: Before the JSP file has been translated
and compiled into the Servlet.
• Translated: The JSP file has been translated and compiled
as a Servlet.
• Initialized: Prior to handling the requests in the service
method the container calls the jspInit() to initialize the
Servlet. Called only once per Servlet instance.
• Servicing: Services the client requests. Container calls
the _jspService() method for each request.
• Out of service: The Servlet instance is out of service.
The container calls the jspDestroy() method.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / suresh s.a.
Life Cycle for JSP is
1.jspinit(),
2._jspService() and
3.jspdestroy().
jspService() method cant be override so why there is an
underscore before the method name.
| Is This Answer Correct ? | 3 Yes | 0 No |
what is the difference between checked and unchecked Exceptions?
Difference between Spring framework and Struts framework?
12 Answers IBM, L&T, VAM,
can u draw class/object diagram for ATM
0 Answers HCL, Zycus Infotech,
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
i need java 1+ experience resume on java developer kindly send me my mail id:srikanthreddy1.marla@gmail.com
HOW MUCH PERCENTAGE WE DEDUCT FOR OUR SUPPLIERS OR OTHER PROFESSIONALS
when exactly should we use throws ,and wen exactly should we use the try and catch for exceptional handling
What is the use of log4j and how to make use of that in a application?
What is iterator in the java collections framework? : java collections
Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?
What is Visual Source Safe(source control Tool)?
What is markup language?