I want to deploy EJB ear in a server but I am really confused about choosing a server among tomcat
, TomEE
and TomEE Plus
.
Apache Tomcat is a Java servlet container which implements the following specifications:
The version of Tomcat you choose will dictate the versions of the above specifications that are supported.
Apache TomEE is a Java EE Web Profile-certified stack which is built on top of an Apache Tomcat base integrated with additional related technologies. It adds implementations for the following specifications (using the Apache project shown in parentheses):
Apache TomEE+ adds:
Note that all of this was available from some obvious places on these Apache web sites:
If I understand correctly, the whole EAR thing has been abandoned in favor of good-old WAR files. But, if you have to deploy an EAR file, you are more than likely going to require Apache TomEE. Apache Tomcat certainly doesn't know what the heck to do with an EAR file.