Difference between web server, web container and a

2020-02-16 05:53发布

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

8条回答
地球回转人心会变
2楼-- · 2020-02-16 06:20

Your question is similar to below:

What is the difference between application server and web server?

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 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 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

查看更多
甜甜的少女心
3楼-- · 2020-02-16 06:20

The main difference between the web containers and application server is that most web containers such as Apache Tomcat implements only basic JSR like Servlet, JSP, JSTL wheres Application servers implements the entire Java EE Specification. Every application server contains web container.

查看更多
登录 后发表回答