What is the difference between application server and web server?

前端 未结 27 2306
攒了一身酷
攒了一身酷 2020-11-22 17:03

What is the difference between application server and web server?

27条回答
  •  星月不相逢
    2020-11-22 17:22

    In Java terms, there's one more: web container (or more strictly, servlet container). It's, say, in between web server and application server.

    A web container in Java terms is an application server that basically only implements the JSP/Servlet part of Java EE and lacks several core parts of Java EE, such as EJB support. An example is Apache Tomcat.

提交回复
热议问题