Answer Posted / surajkumar.java
1. The servlet is controlled by the container in which the
servlet has been deployed. When a request is made to a
servlet, its mapping is searched in web.xml. If mapping
found then the web container loads the servlet class and
creates an instance of it and initializes (e.g servlet
context parameters, database connections objects etc) the
servlet instance by calling the init method.
2. Then invokes the service method, passing a request and
response object. The service provided by a servlet is
implemented in the service method of a GenericServlet and
the doMethod methods (where Method can take the value like
Get, Delete, Options, Post, Put, Trace) of an
HttpServlet. Basically a service method extract information
from the request, access external resources, and then
populate the response based on that information.
3. The container calls destroy method to remove servlet
instance. We also do some specialized handling like closing
a connection, freeing the memory used by local variables etc
by explicitly defining the destroy method inside a servlet
class.
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
How to deploy Jar, War files in J2EE?
What’s jboss jbpm?
What is the difference between static and non-static with examples?
Can I import same package/class twice? Will the jvm load the package twice at runtime?
What is colon_pkg_prefixes and what is its use?
What are the different types of exception?
What are callback interfaces?
Do I need to import javlang package any time? Why ?
Is a class a subclass of itself?
How primary key is implemented in Oracle?
Where can I ask questions and make suggestions about seam?
What is the argument type of a programs main() method?
Do you think that java should have had pointers?
Describe, in general, how java's garbage collector works?
What are the oops concept?