Reputation: 62464
When I go to create a new Java EE 6 project in eclipse I see a bunch of types of projects....
What are these different types and what do they mean?
Upvotes: 9
Views: 14079
Reputation: 7381
Java Enterprise Edition considers the following types of applications:
Finally in the Java EE 6 specification is defined the Web Profile schema for Applications Servers. This Web Profile let to you include in Web Applications EJB (with some limitations). For example the project TomEE merges Apache Tomcat with Apache OpenEJB in order to provide a server compatible with "Web Profile".
Upvotes: 16
Reputation: 23443
EJB
module produces a .JAR
containing all your enterprise java beans.
An EAR
file is to contain at least one JavaEE module, an EJB
is a JavaEE module.
Upvotes: 7