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

What is the difference between Get and Post Method?

12 Answers   T3 Softwares,


i have class files in class folder. but i have no java files. but i want to modify the java files which are related to class files . how ?

5 Answers   TCS,


What are all the ways for session tracking?

0 Answers  


Explain web container.

0 Answers  


How to get the current httpsession object?

0 Answers  






What is servlet api used for conneting database?

0 Answers  


when the jsp page is translated to servlet?

5 Answers   HCL,


How to make servlet thread safe?

9 Answers   Frisco Tech, InfoVista, WipSys Technologies,


Explain in brief the directory structure of a web application?

0 Answers  


what is the advantage of using Servlets over CGI programming?

4 Answers  


What is connection pooling?

4 Answers   Wipro,


Explain url encoding in servlet?

0 Answers  


Categories