Web服务器,Web容器和应用程序服务器之间的区别

问题描述:

请告诉我Web服务器,Web容器和应用程序服务器之间的区别。

Please tell me the Difference between web server, web container and application server.

您的问题类似于以下内容:

Your question is similar to below:

应用程序服务器和Web服务器之间有什么区别?

在Java中:
Web容器或Servlet容器或Servlet引擎:是用于管理Servlets,JSP等组件。它是Web服务器的一部分。

In Java: Web Container or Servlet Container or Servlet Engine : is used to manage the components like Servlets, JSP. It is a part of the web server.

Web服务器或HTTP服务器:能够处理客户端发送的HTTP请求并通过HTTP响应的服务器响应。

Web Server or HTTP Server: A server which is capable of handling HTTP requests, sent by a client and respond back with a HTTP response.

Application Server或App Server:可以处理用户与组织的后端业务应用程序或数据库之间的所有应用程序操作。它经常被视为三者的一部分 - 层应用程序:
表示层,逻辑层,数据层

Application Server or App Server: can handle all application operations between users and an organization's back end business applications or databases.It is frequently viewed as part of a three-tier application with: Presentation tier, logic tier,Data tier