Tomcat is web server or application server? [closed]

Tomcat is a web server (can handle HTTP requests/responses) and web container (implements Java Servlet API, also called servletcontainer) in one. Some may call it an application server, but it is definitely not an fullfledged Java EE application server (it does not implement the whole Java EE API).

See also:

  • What exactly is Java EE?
  • How do servlets work? Instantiation, sessions, shared variables and multithreading

Leave a Comment