what is servlet life cycle?
Answers were Sorted based on User's Feedback
Answer / rama
The three important functions that implement the life cycle
of servlet are init(),service(),destroy().
When a client/user specifies a request by entering the
URL in the browser the browser generates an HTTP request
for it and sends to the server.
On receiving the HTTP request the server maps a servlet
to this request. the servlet is then dynamically retrieved
and loaded in the memory.
The server now calls the init() method of the servlet.
Parameters can be sent to configure the servlet. This
method is called only once when the servlet is first
loaded.
When a request arrives for this servlet the server
invokes the service() method. this is the method which
handles all the HTTP requests and formulates HTTP response.
For every request service() method is called.
When the server decides to unload the servlet it calls
the destroy() method. Any resources which were used by the
servlet or any open files or any database connections can
be restored so that the memory used by these objects and
the servlet can then be garbage collected.
Is This Answer Correct ? | 15 Yes | 0 No |
Answer / nalinscjp
Through out the time of execution of a Sevlet, there are
many methods which are important to noticed.
<a
href="http://servlet-jsp.blogspot.com/2010_03_01_archive.html">Read
here</a>
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / anu
There are 3 methods in servlet life cycle:init(),service
(),destroy().
whenever servlets loads,init() method is invoked.init
()invokes only once in whole life cycle.then service()
method is invoked which handles all the Http requests and
correspondingly generate Http response.Finally service()
method is invoked for unloading the servlet.this method is
also invoked only once.
Is This Answer Correct ? | 3 Yes | 4 No |
What is the GenericServlet class?
Which is the methods of generated servlet?
What are the exceptions thrown by Servlets?
What is the workflow of a servlet?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
Describe in brief RequestDespatcher?
difference between forward and sendredirect
What is the life cycle of a servlet?
What is a servlet engine?
What are different types of Servlets?
What happens, when client requests for server object, which is not yet loaded into the memory?
How do you track a user session in servlets?