Answer Posted / ravikiran(aptech mumbai)
1).container will find the web.xml
2).container parses the web.xml
3).creates the instance of servlet using
class.forname(classname).newInstance()
4).preinitializes the servlet with the entry known as
<load-on-startup>
5).Initializing the servlet instance using
init(ServletConfig config) method
6).Container creates request and resonse objects and finds
that the requested resource is a servlet and invokes a new
thread for the particular request
7).Calls doGet() or doPost() inaccordance with the method
decared inside html
8).And passes the request and response objects into the
doGet() or doPost()
9).And with the help of response object the response is ent
back to the client
10).destroy() method call will cleanup the resources
11).the thread will go into a pool
12).The request and response objects will be sent to an
output stream
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What are the different methods of session management in servlets?
How to get the actual path of servlet in server?
What is servlet and its use?
What is servlet attributes and their scope?
Why is httpservlet declared abstract?
List out difference between a JavaBean from a Servlet?
What are the advantages of Servlet over CGI?
Is java servlet still used?
Can a jsp be called using a servlet?
Explain session tracking and its importance?
What is context in servlet?
How httpservlet is different from the genericservlet?
Difference between get and post in java servlets?
What are the important functions of filters?
What is servlet and list its types?