How does tomcat servlet container work?



How does tomcat servlet container work?..

Answer / Ram Dwivedi

Tomcat is a popular open-source web server and servlet container. It receives HTTP requests, maps them to the appropriate servlet, loads and initializes the servlet, calls its service method, handles any exceptions, and sends back the response to the client.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Servlets Interview Questions

How long do servlets last?

1 Answers  


In jsp custom tags from child tags to how many levels of parent tags you can acess

1 Answers   Bosch,


How do I support both get and post from the same servlet?

1 Answers  


What is meant by a servlet?

1 Answers  


How servlets can be automatically reloaded?

3 Answers  


What do you mean by chaining in servlet?

1 Answers  


When to use doget() and when dopost()?

1 Answers  


Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?

1 Answers  


Difference between forward() method and sendredirect() method ?

1 Answers  


What is Servlet Context?

5 Answers  


Difference between httpservlet and generic servlets?

1 Answers  


What is the need of session tracking in HttpServlet ?

3 Answers  


Categories