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 are void methods?
Explain the protected field modifier?
Is there any difference between nested classes and inner classes?
What is meant by local variable and instance variable?
Is it possible to write a regular expression to check if string is a number?
When do you call copy constructor?
What’s the difference between unit, integration and functional testing?
Why object class is super class for every class in java?
Is singleton set an interval?
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).
What is the purpose of default constructor?
What access modifiers can be used for class ?
What is Java Annotations?
Why are variables important in research?
Can you override private or static method in java?