且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

应用程序服务器和servlet容器之间的区别?

更新时间:2023-12-04 10:39:16

servlet-container仅支持servlet API(包括JSP,JSTL)。

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

应用服务器支持整个JavaEE - EJB,JMS,CDI,JTA, servlet API(包括JSP,JSTL)等。

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

可以在servlet容器上运行大多数JavaEE技术,但是你必须独立安装实施特定技术。

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.