1.

Explain The Concepts Of Tomcat Servlet Container?

Answer»
  • A servlet container is a specialized web server that supports servlet EXECUTION.
  • It combines the basic functionality of a web server with certain Java/servlet specific optimizations and extensions (such as an integrated Java runtime environment, and the ability to automatically translate specific URLs into servlet REQUESTS).
  • Individual servlets are registered with a servlet container, PROVIDING the container with information such as the functionality, the URL used for IDENTIFICATION.
  • The servlet container then initializes the servlet as necessary and delivers requests to the servlet as they arrive.
  • Many containers can dynamically add and remove servlets from the system, allowing new servlets to quickly be deployed or removed without affecting other servlets running from the same container.
  • Servlet containers are also referred to as web containers or web engines.



Discussion

No Comment Found