blob: ea94f75f870793b80a33ccd74a5ca3c9ef0a449d [file] [log] [blame]
= Collapsed EAR
:index-group: Unrevised
:jbake-date: 2018-12-05
:jbake-type: page
:jbake-status: published
= One archive
The basic idea of this approach is that your Servlets and EJBs are
together in your WAR file as one app.
* No classloader boundries between Servlets and EJBs
* EJBs and Servlets can share all third-party libraries (like Spring!) -
no EAR required.
* Can put the web.xml and ejb-jar.xml in the same archive (the WAR
file).
* EJBs can see Servlet classes and vice versa.
= Not quite J2EE (it is truly Java EE6)
This is very different than J2EE or Java EE 5 as there aren't several
levels of separation and classloader hierarchy. This is going to take
some getting used to and it should be understood that this style of
packaging isn't J2EE compliant. Who would care tough as it is a feature
of Java EE 6 we would've been waiting for so long.
J2EE classloading rules:
* You cannot ever have EJBs and servlets in the same classloader.
* Three classloader minimum; a classloader for the ear, one for each
ejb-jar, and one for each WAR file.
* Servlets can see EJBs, but EJBs cannot see servlets.
To pull that off, J2EE has to kill you on packaging: * You cannot have
EJB classes and Servlet classes in the same archive. * You need at least
three archives to combine servlets and ejbs; 1 EAR containing 1 EJB jar
and 1 servlet WAR. * Shared libraries must go in the EAR and be included
in a specially formatted 'Class-Path' entry in the EAR's MANIFEST file.
Critically speaking, forcing more than one classloader on an application
is where J2EE "jumps the shark" for a large majority of people's needs.
= Example with Tomcat
If you want to try to work with Servlets/JSP and OpenEJB using Tomcat,
see the openejbx30:tomcat.html[setup page] and the
"/webapps/ejb-examples" section of the
link:downloads.html[openejb-examples.zip] available on the
http://tomee.apache.org/downloads.html[download page].