Understanding servlet container

前端 未结 5 1524
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 04:45

As a UI devloper and someone with very limited Java knowledge, how do I understand what exactly is servlet container in simple terms ?

I have heard Weblogic, JBoss,

5条回答
  •  一整个雨季
    2020-12-13 05:27

    WebLogic, JBOSS, and other Java EE app servers have servlet containers, plus more: EJBs, naming and directory service, JMS, etc.

    Servlets are HTTP listeners that run inside a servlet container. The servlet can be mapped to response to HTTP GET and POST requests to a given URL of your choice. The container manages the lifecycle and pooling of the servlets.

提交回复
热议问题