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

how to make the IP address to .com

1 Answers   iGate,


Explain servlet life cycle?

0 Answers  


What are some advantages of storing session state in cookies?

0 Answers  


Define declaration.

0 Answers  


I Have A Plan to develop a Project in Struts,I want the template of struts project with Hibernate.Canany body provide me the required information?

0 Answers   IBM,






Explain url encoding?

0 Answers  


Which event is fired at the time of session creation and destroy?

0 Answers  


How can a servlet refresh automatically if some new data has entered the database?

3 Answers   Citi Bank, CitiGroup, IBM, Satyam,


What do you mean by interservlet communication?

0 Answers  


What is SingleThreadModel interface?

0 Answers  


How we can check in particular page the session will be alive or not

4 Answers   L&T, Symbiosis,


Can you send the mail from a servlet ,if yes tell how?

2 Answers  


Categories