Answer Posted / vijayakumar chinnasamy
jsp life cycle:
===============
1.Page translation - automatically translate the .jsp file
in .java(servlet)file
2.Compilation - automatically compile the .java(servlet)
file and create .class file .
3.Loading - load the compiled servlet into container.
4.Create instance - create instance for loaded servlet
(.java)
5.call jspInit method. (call only one time)
6.call _jspService method
7.call jspDestroy method.(call only one time)
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is the locale class in java programming?
What is the preferred size of a component in java programming?
How to perform bubble sort in java?
Explain the scope or life time of class variables or static variables?
What is an exception? difference between Checked and Unchecked exception in Java
What is difference between static and final?
Explain the importance of finally block in java?
How do you check if a string is lexicographically in java?
What are synchronized methods ?
What is a method type?
What does the “final” keyword mean in front of a variable? A method? A class?
Explain the purpose of garbage collection in Java?
When should we create our own custom exception classes?
Differentiate between stringbuffer and stringbuilder in java.
What is the equal sign?