What is the difference between application server and web server?

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

What is the difference between application server and web server?

27条回答
  •  悲&欢浪女
    2020-11-22 17:09

    In short,
    The web server is a server that serves static web pages to users via HTTP requests.
    The application server is a server that hosts the business logic for a system.
    It often hosts both long-running/batch processes and/or interop services not meant for human consumption (REST/JSON services, SOAP, RPC, etc).

提交回复
热议问题