Difference Between J2EE and J2SE Project

I downloaded an open source project from github. This is a maven based project. How can I understand that a project is a J2SE project or a J2EE project? What are the differences in the structure of these two projects?

+4
source share
4 answers

The J2EE project (known as JEE) differs from the J2SE project in the sense that it uses JEE components. A JEE project would use one or more of the following components here.

+1
source

J2SE ( Java SE) Java , .

J2SE , , ..


J2EE ( Java EE) - Java 2, .

J2EE , API- , . J2EE , , .

J2EE Java 2 Standard Edition (J2SE) , /-.

>

, J2SE - , J2EE - web.xml

+1

maven, , maven . , j2se .jar( ) j2ee .war .ear( - j2ee). pom.xml, ( , ).

, , , ...

0

JAVAEE JAVASE import container reliability.
: JAVASE javax.ejb, JAVAEE .

, EJB, JAVAEE, -. weblogic websphere jboss.
tomcat, , JAVAEE.

0

Source: https://habr.com/ru/post/1523863/


All Articles