what is the life cycle of jsp?

Answers were Sorted based on User's Feedback



what is the life cycle of jsp?..

Answer / 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

what is the life cycle of jsp?..

Answer / sivasubramanian.k

It is similar to the lifecycle of a servlet only,
They are:
jsp:init()
jsp:service()
jsp:destroy()
The init() method initializes the servlet within jsp and
must be called before the servlet can service any requests.
In the entire life of a servlet, the init() method is
called only once.

After initialization, the servlet can service client-
requests. Each request is serviced in its own separate
thread. The container calls the service() method of the
servlet for every request. The service() method determines
the kind of request being made and dispatches it to an
appropriate method to handle the request. The developer of
the servlet must provide an implementation for these
methods. If a request for a method that is not implemented
by the servlet is made, the method of the parent class is
called, typically resulting in an error being returned to
the requester
.
Finally, the container calls the destroy() method which
takes the servlet out of service. The destroy() method like
init() is called only once in the lifecycle of a Servlet.

Is This Answer Correct ?    7 Yes 1 No

what is the life cycle of jsp?..

Answer / vasanth

Actually the said( jspInit(),_jspService(), jspDestroy())
methods are not JSP life cycle methods, they are convinience
methods. bcz when we run above said methods, internally
servlts life cycle methods also runned., they must take the
support of servlets.

so, init(), service(), destroy() methods are the real life
cycle methods of JSP and jspInit(), _jspService(),
jspDestroy() are the convinience methods.... f

if you want to knw full clarification of above said
scenaria, just the open super class source code that is
available in jasper.jar file..

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is double checked locking in singleton?

0 Answers  


7) Suppose there is Student class like class student { int age; string name; } We want to store these objects in a HashMap. Do we need to override any methods in Student class? If any which ones and why? what if i just override equals or just hashcode? what will be the results in both the cases?

4 Answers   CSC, Nagarro, RBS,


What is the maximum size of list in java?

0 Answers  


Is 0 a real number?

0 Answers  


what is the collable collections in java?

2 Answers   Persistent,






Why is java so important?

0 Answers  


When is the finalize() called?

0 Answers  


String Reverse in Java...!

5 Answers  


different between exception and error? explaim check and uncheck exception

4 Answers  


Which variable is the independent variable?

0 Answers  


What isan abstract class and when do you use it?

1 Answers   Genpact,


What is meant by singleton class?

0 Answers  


Categories