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
Explain request dispatcher and its methods.
What are the types of Session Tracking ?
When to use doget() and when dopost()?
Explain get and post.
Explain the architechure of a servlet?
Can you send an authentication error from a servlet?
What is Client-Server Computing?
What is the process for chaining servlet?
Name the different ways of session tracking.
What are common tasks performed by Servlet Container?
What is the difference between servlet and filter?
What is the procedure of invoking different servlet in a different application?
Write a hello world program using servlets.
What do you mean by the servlet chaining?
What is java servlet?