Servlet Container

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2020 Apr 9 8:11
Editor
Edited
Edited
2025 Jun 15 2:10
Refs
Refs
  • Java vs. Javascript
  • JRE (C) vs. V8 Engine (C++) (JIT compilation for improved performance)
  • JRE + Servlet vs. Node (RE build by V8 & has V8)
  • Servlet Container vs. Node Framework
  • Tomcat vs. Express
  • JSP vs. ejs
A Servlet Container can be thought of as a repository for Servlets. When developing web applications with Java, multiple Servlets are needed, and the Servlet Container manages their lifecycle and provides multi-threading support. Tomcat is a prime example of a Servlet Container. Spring MVC is also a Servlet that is managed by the Servlet Container. When someone says they only need Spring MVC without Servlets, they're referring to handling business logic through Spring, not suggesting that Servlets are unnecessary.
 
 
 
 
 

Recommendations