Answer Posted / 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 |
Post New Answer View All Answers
What is generic servlet class?
What is servlet lazy loading?
Explain jsessionid?
How do you invoke a servelt?
Why filter is used in servlet?
How we can call a jsp from the servlet?
What is a web container and what is its responsibility?
How many objects of a servlet is created?
What do you mean by session tracking and also explain its techniques?
What do you mean by web applications?
How to get the current httpsession object?
What is webservlet?
Which interface should be implemented by all servlets?
Why servlet is used as controller ? Not JSP? I want complete explation?
What are the features added in Servlet 2.5?