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 vector class in java programming?
What is java regex?
What is the use of keywords in java?
How do you create a sop?
Can we pass null as argument in java?
What are the object and class classes used for?
Compare java and python.
Can a static class have a constructor java?
How many types of methods are there in java?
What is the difference between access specifiers and access modifiers in java? 16
What is an exception? difference between Checked and Unchecked exception in Java
What is the difference between JDK and JVM?
How is string stored in java?
What is the private method modifier?
Can we create an object if a class doesn't have any constructor ( not even the default provided by constructor ) ?