Difference between an application server and a servlet container?

后端 未结 5 1061
臣服心动
臣服心动 2020-11-28 01:38

I am trying to understand the difference between a full fledged application server (e.g. Weblogic, JBoss etc.) and a servlet container (Tomcat, Jetty etc.).

How do t

5条回答
  •  情书的邮戳
    2020-11-28 02:13

    A servlet-container supports only the servlet API (including JSP, JSTL).

    An application server supports the whole JavaEE - EJB, JMS, CDI, JTA, the servlet API (including JSP, JSTL), etc.

    It is possible to run most of the JavaEE technologies on a servlet-container, but you have to install a standalone implementation of the particular technology.

提交回复
热议问题