whats the life cycle of jsp
Answers were Sorted based on User's Feedback
Answer / manoj
JSP page translation,
JSP page compilation,
load class,
create instance,
call the jspInit method,
call the _jspService method, and
call the jspDestroy method.
| Is This Answer Correct ? | 54 Yes | 6 No |
Answer / sharad kumar verma
jspinit();
_jspservice();
jspdestroy();
| Is This Answer Correct ? | 31 Yes | 13 No |
A JSP page services requests as a servlet.
The life cycle and many of the capabilities of
JSP pagesare determined by Java Servlet technology
1)JSP page translation,
2)JSP page compilation,
3)load class,
4)create instance,
5)call the jspInit method,
6)call the _jspService method, and
7)call the jspDestroy method.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / maddy
JSP page translation,
JSP page compilation,
load class,
create instance,
call the jspInit method,
call the _jspService method, and
call the jspDestroy method.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / prasanna
Translation
compilation
jspInit()
_jspService()
jspDestroy
| Is This Answer Correct ? | 15 Yes | 8 No |
Answer / cool_duzz
jspInit() from jspPage interface
_jspService() from httpJspPage Interface
jspDestroy() from jspPage interface
| Is This Answer Correct ? | 12 Yes | 8 No |
Answer / vivek singh
JSP’s life cycle can be grouped into following phases.
1. JSP Page Translation
2. JSP Page Compilation
3. Class Loading
4. Execution phase
5. Initialization
6. jspService() execution
7. jspDestroy() execution
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / amlan
1.Translation
2.Loading and Instantition
3.Service(public void _JspService())
4.public void destroy()
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rohan
translation-convert jsp code into servlet code which is done
by jsp compiler
compilation-generated servlet is compile.compilation is done
by javac cmd
Loading-compiled byte code is loaded by class loader
instantiation-instance of servlet is created
initialisation-is done by jspinit()method
Request Processing-_jspService() is the method that actually
process the request
Destruction-is done by jspDestroy()method
| Is This Answer Correct ? | 0 Yes | 0 No |
Can subclass overriding method declare an exception if parent class method doesn't throw an exception?
What is the immediate superclass of Menu?
Is it possible to write static method in abstract class? justyfy your answer?
explain Anonynous inner class?
What do you mean by hashing?
IS method overriding is Duplication of Methods?
What is left shift and right shift?
How can you write a loop indefinitely in java programming?
Can a private method of a superclass be declared within a subclass?
What is the difference between iterator and enumeration ?
What is module in oop?
Why non nested classes in java are not having marked as protected access specifier