what is the control flow in servlet when we send a request?
Answer Posted / ravikiran
when we are requesting a particular resource in the
server,the comiled class will be loaded into the container
calls the no-arg constructor and init() then the container
will create request,response objects and pass it to the
corresponding doXXX() method based on the http method of the
form,allocates a thread and do the business logic and send
the response back to the client by sending the thread to a
connection pool and destroying the request and response objects
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the different session tracking techniques?
What is the need of servlet filters?
What methods do you use in servlet - applet communication?
What is servlet container?
What is called servlet container?
Define the servlet mapping.
What is war file?
What is the difference between using getSession(true) and getSession(false) methods?
What are advantages of servlets over cgi?
What is difference between jsp and servlet?
Why session tracking is needed?
What is Servlet API used for connecting database?
What's the advantages using servlets than using cgi?
When servlet object is created?
How do you create a cookie using servlet?