what is the control flow in servlet when we send a request?

Answers were Sorted based on User's Feedback



what is the control flow in servlet when we send a request?..

Answer / dipak.cvrca

-->first request comes from client browser to server
(container)which takes the control to the web.xml file.

-->in xml file servlet file(.class) will be searched
according to the information about the url pattern given
in the address,then coresponding class file is loaded to
the container(loading) by the method
java.lang.class.forName().newInstance.

-->now container call the init(servletConfig) method to add
necessary headers in the servlet,such as Config,context
session,request and many more.

-->now control pass to the service()of the HttpServlet(if
you have extended this class) and the type of method
(get/post) is checked and accordingly the control will
pass to the implemented doGet() or doPost() of the your
class(by the dynamic method dispatch)

-->after service the container will call the destroy() of
Servlet class.
i hope this answer will satishfy you,thank
you,(Dipak ku. jenamani)

Is This Answer Correct ?    95 Yes 7 No

what is the control flow in servlet when we send a request?..

Answer / 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 ?    14 Yes 2 No

what is the control flow in servlet when we send a request?..

Answer / puli

when the request is go the server webcontainer creates
request object and response object after that service
method will be called passed request and response objects
as a parameters.
Next request and response objects are destroyed.
Thanks
Puli mama

Is This Answer Correct ?    4 Yes 0 No

what is the control flow in servlet when we send a request?..

Answer / 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

what is the control flow in servlet when we send a request?..

Answer / lucky

Servlet: is used to create web tech,its based component to create web app ,its a server side component, its a java obj which implements directly or indirectly implemented by Servlet interface , its a singleton obj and multithreaded model and security, its an interface having abstract methods init , service ,destroy, config , info and these inti ,service , destroy are life cycle method, remain are programmer initialized ,whn user send a req to peticular serlet req reach to server thne server jvm check url pattern in deployment descriptor file then it find url server take url and check with the corresponding servlet if its finds that servlet then server jvm wil create servlet obj then it will cal life cycle methods and son ........................

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Servlets Interview Questions

Which exception is thrown if the servlet is not initialized properly?

0 Answers  


Which is the methods of generated servlet?

0 Answers  


Why do we need a constructor in a servlet if we use the init method?

0 Answers  


Explain the role of dispatcherservlet and contextloaderlistener.

0 Answers  


What do you mean by request dispatcher in servlet?

0 Answers  


What happens, when client requests for server object, which is not yet loaded into the memory?

2 Answers  


Write a command to get actual path of a servlet to the server?

0 Answers  


Hi friends, am newbie to servlet. My interviewer asked why used servlet in your application. i used servlet for controller logic and business logic . is it correct ?

5 Answers   TCS,


What is forward() and include() of servlets RequestDispatcher interface?

6 Answers   HCL,


What is URL Rewriting ?

2 Answers  


How to run a servlet program?

7 Answers   Infosys,


Why is http protocol called as a stateless protocol?

0 Answers  


Categories