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
Explain enumeration in java?
Can we have any other return type than void for main method?
What is threaded programming and when is it used? : Java thread
Is overriding possible in java?
What is singleton service?
How do you implement polymorphism in our day to day life?
What are the types of exceptions?
If a variable is declared as private, where may the variable be accessed?
What are generic methods?
How does varargs work in java?
Does java support multiple inheritances?
What is the properties class in java programming?
Can java object be locked down for exclusive use by a given thread?
What is the difference between member variables initialization and assignment in a constructor?
What are parsing rules?