servlet life cycle?
Answers were Sorted based on User's Feedback
Answer / veeraiah dasari
Servlet lifecycle consists of three stages
1)generation
2)Service to the client
3)death of servlet
1)Generation:This stage occurs when a client request comes
to the server,it immediately generates a servlet for that
particular client by calling init() method.This method can
be called only once in a servlet life cycle.
2)Service :After servlet has been created,it provides the
service to the particular client by calling service() method.
This can be called many times in a servlet lifecycle.
3)death of servlet:In this after completion of the service
to the client.it is the responsibility of the server to
destroy the servlet by calling destroy() method.This method
can be called only once in servlet life cycle.
| Is This Answer Correct ? | 18 Yes | 0 No |
Answer / rajshri
servlet life cycle..
1) loading of class
2) instantiation of that loading class
3) call init() method
4) call service() method
5) call destroy() method
| Is This Answer Correct ? | 9 Yes | 0 No |
Life Cycle of Servlet:
1.Servlet Loading.
2.Servlet instantiation:
After Servlet instantiation and before calling init() method
ServletConfig object is created by Container.
3.Servlet initialization: At that time init() method is called.
4.Request processing:In this stage service() method is called
and at that time Request and Response objects are created by
Container.
5.Servlet deinstantiation:At this stage destroy() method
will be called.
| Is This Answer Correct ? | 2 Yes | 0 No |
What's the advantages using servlets than using cgi?
what is the difference between servlets and struts?
what is the difference b/w DispatchAction and LookUpDispatchAction?
1 Answers Deloitte, iGate, Tech Mahindra,
Hi Friends, Suppose you have a web appliction which consists of 100 clients are connected with Connection pooling and they are associated with 100 connection objcet and connected with DB sever,Due some problem DB-Server suddenly crashed and server came to down state for a while after few minutes DB-server once again up,Now how will I manage my Pool Management with my 100 clients...can any one tell me??????????????????
why are extending GenericServlet and why are extending HttpServlet explain?
Is Servlet Class Thread safe?????? How to make servlet Thread safe ???
Which application server is best for java?
If we disable cookies in our web page, what will happen?
What are the exceptions thrown by servlets? Why?
Name the servers that can be used to develope and deploy Servlets?
where the generated jsp source file are stored?
when you comppile the servlet is it neccesary to restaet the tomcat server?