Java Platform, Enterprise Edition

Java Platform, Enterprise Edition or Java EE is a widely used computing platform for enterprise software.

The platform provides an API and runtime environment for developing and running enterprise software, including network and web services, and other large-scale, multi-tiered, scalable, reliable, and secure network applications. Java EE extends the Java Platform, Standard Edition (Java SE),[1] providing an API for object-relational mapping, distributed and multi-tier architectures, and web services. The platform incorporates a design based largely on modular components running on an application server. Software for Java EE is primarily developed in the Java programming language. The platform emphasizes convention over configuration[2] and annotations for configuration. Optionally XML can be used to override annotations or to deviate from the platform defaults.

Java EE is developed under the Java Community Process.

Version history

The platform was known as Java 2 Platform, Enterprise Edition or J2EE until the name was changed to Java Platform, Enterprise Edition or Java EE in version 5. The current version is called Java EE 7.

Standards and specifications

Java EE is defined by its specification. As with other Java Community Process specifications, providers must meet certain conformance requirements in order to declare their products as Java EE compliant.

Java EE includes several API specifications, such as RMI, e-mail, JMS, web services, XML, etc., and defines how to coordinate them. Java EE also features some specifications unique to Java EE for components. These include Enterprise JavaBeans, connectors, servlets, JavaServer Pages and several web service technologies. This allows developers to create enterprise applications that are portable and scalable, and that integrate with legacy technologies. A Java EE application server can handle transactions, security, scalability, concurrency and management of the components it is deploying, in order to enable developers to concentrate more on the business logic of the components rather than on infrastructure and integration tasks.

General APIs

The Java EE APIs includes several technologies that extend the functionality of the base Java SE APIs.

javax/servlet
The servlet specification defines a set of APIs to service mainly HTTP requests. It includes the JavaServer Pages (JSP) specification.
javax/websocket
The Java API for WebSocket specification defines a set of APIs to service WebSocket connections.
javax/faces
This package defines the root of the JavaServer Faces (JSF) API. JSF is a technology for constructing user interfaces out of components.
javax/faces/component
This package defines the component part of the JavaServer Faces API. Since JSF is primarily component oriented, this is one of the core packages. The package overview contains a UML diagram of the component hierarchy.
javax/el
This package defines the classes and interfaces for Java EE's Expression Language. The Expression Language (EL) is a simple language originally designed to satisfy the specific needs of web application developers. It is used specifically in JSF to bind components to (backing) beans and in CDI to name beans, but can be used throughout the entire platform.
javax/enterprise/inject
These packages define the injection annotations for the Contexts and Dependency Injection (CDI) APIs.
javax/enterprise/context
These packages define the context annotations and interfaces for the Contexts and Dependency Injection (CDI) API.
javax/ejb
The Enterprise JavaBean (EJB) specification defines a set of lightweight APIs that an object container (the EJB container) will support in order to provide transactions (using JTA), remote procedure calls (using RMI or RMI-IIOP), concurrency control, dependency injection and access control for business objects. This package contains the Enterprise JavaBeans classes and interfaces that define the contracts between the enterprise bean and its clients and between the enterprise bean and the ejb container.
javax/validation
This package contains the annotations and interfaces for the declarative validation support offered by the Bean Validation API. Bean Validation provides a unified way to provide constraints on beans (e.g. JPA model classes) that can be enforced cross-layer. In Java EE, JPA honors bean validation constraints in the persistence layer, while JSF does so in the view layer.
javax/persistence
This package contains the contracts between a persistence provider and the managed classes and the clients of the Java Persistence API (JPA).
javax/transaction
This package provides the Java Transaction API (JTA) that contains the interfaces and annotations to interact with the transaction support offered by Java EE. Even though this API abstracts from the really low-level details, the interfaces are also considered somewhat low-level and the average application developer in Java EE is either assumed to be relying on transparent handling of transactions by the higher level EJB abstractions, or using the annotations provided by this API in combination with CDI managed beans.
javax/security/auth/message
This package provides the core of the Java Authentication SPI (JASPIC) that contains the interfaces and classes to build authentication modules for secure Java EE applications. Authentication modules are responsible for the interaction dialog with a user (e.g. redirecting to a Form or to an OpenID provider), verifying the user's input (e.g. by doing an LDAP lookup, database query or contacting the OpenID provider with a token) and retrieving a set of groups/roles that the authenticated user is in or has (e.g. by again doing an LDAP lookup or database query).
javax/enterprise/concurrent
This package provides the interfaces for interacting directly with Java EE's platform default managed thread pool. A higher-level executor service working on this same thread pool can be used optionally. The same interfaces can be used for user-defined managed thread pools, but this relies on vendor specific configuration and is not covered by the Java EE specification.
javax/jms
This package defines the Java Message Service (JMS) API. The JMS API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages.
javax/batch/api
This package defines the entry AP for Java EE Batch Applications. The Batch Applications API provides the means to run long running background tasks that possibly involve a large volume of data and which may need to be periodically executed.
javax/resource
This package defines the Java EE Connector Architecture (JCA) API. Java EE Connector Architecture (JCA) is a Java-based technology solution for connecting application servers and enterprise information systems (EIS) as part of enterprise application integration (EAI) solutions. This is a low-level API aimed at vendors that the average application developer typically does not come in contact with.

Web profile

In an attempt to limit the footprint of web containers, both in physical and in conceptual terms, the web profile was created, a subset of the Java EE specifications. The Java EE web profile comprises the following:

Specification Java EE 6[6] Java EE 7[3]
Servlet 3.0 3.1
JavaServer Pages (JSP) 2.2 2.3
Unified Expression Language (EL) 2.2 3.0
Debugging Support for Other Languages (JSR-45) 1.0 1.0
JavaServer Pages Standard Tag Library (JSTL) 1.2 1.2
JavaServer Faces (JSF) 2.0 2.2
Java API for RESTful Web Services (JAX-RS) 1.1 2.0
Java API for WebSocket (WebSocket) n/a 1.0
Java API for JSON Processing (JSON-P) n/a 1.0
Common Annotations for the Java Platform (JSR-250) 1.1 1.2
Enterprise JavaBeans (EJB) 3.1 Lite 3.2 Lite
Java Transaction API (JTA) 1.1 1.2
Java Persistence API (JPA) 2.0 2.1
Bean Validation 1.0 1.1
Managed Beans 1.0 1.0
Interceptors 1.1 1.2
Contexts and Dependency Injection for the Java EE Platform 1.0 1.1
Dependency Injection for Java 1.0 1.0

Certified application servers

Although by definition all Java EE implementations provide the same base level of technologies (namely, the Java EE spec and the associated APIs), they can differ considerably with respect to extra features (like connectors, clustering, fault tolerance, high availability, security, etc.), installed size, memory footprint, startup time, etc.

App Server Developer Java EE 7 certified - Full Java EE 7 certified - Web Java EE 6 certified - Full
Official Oracle page for Java EE Compatibility.
Java EE 6 certified - Web Java EE 5 certified J2EE 1.4 certified Licensing
GlassFish server Open Source Edition Oracle Yes v4.0[7] Yes v4.0[7] Yes v3.x and upward[8] Yes v3.x Web Profile Yes v2.1.x[8] Free software
Oracle GlassFish Server Oracle Yes v3[9] based on the open source GlassFish application server Yes Sun Java System Application Server v9.0 Yes Sun Java System Application Server v8.2 Proprietary software
Oracle WebLogic Server Oracle Yes v12.2.1 [10][11][12] Yes v12c[13] Yes v10.3.5.0 Yes v9 Proprietary software
WildFly Red Hat Yes v8.0.0.Final[14][15][16] Yes v8.0.0.Final Yes v7.1[17] Yes v6.0[18] and v7.0[19] Yes v5.1[20][21] Yes v4.x Free software
JBoss Enterprise Application Platform Red Hat Yes v7.0[22] Yes v6.0[23] Yes v5 Source is Free software
IBM WebSphere Application Server IBM Yes v9[24] Yes v8[25] Yes v7 Yes Proprietary software
IBM WebSphere Application Server Liberty IBM Yes v8.5.5.6 [26][27] Yes v8.5.5[28] Proprietary software
IBM WebSphere Application Server Community Edition IBM Yes v3.0 Yes v2.1 Proprietary software
Apache Geronimo Apache Yes v3.0-beta-1 [29] Yes v2.0 Yes v1.0 Free software
JEUS TmaxSoft Yes v8[30][31][32] Yes v7[33][34] Yes v6 Yes v5 Proprietary software
Cosminexus Application Server Hitachi Yes v10[35][36] Yes v9[37] Proprietary software
Fujitsu Interstage Application Server[38] Fujitsu Yes v1 Azure/v10.1[39][40] Yes Proprietary software
WebOTX NEC Yes[41] Yes Proprietary software
Resin Server Caucho Yes v4.0.[42] Yes Proprietary software
Apache TomEE[43][44] Apache No 7 (Java EE 7 like, but not certified[45]) Yes Free software
Siwpas OW2 Yes v6.0[46] Free software
JOnAS OW2 Yes v5.3 rc1[47] Yes Yes Free software
SAP NetWeaver SAP Yes v2.x[48] Yes Yes Proprietary software
Oracle Containers for Java EE Oracle Yes Proprietary software
Oracle iPlanet Web Server Oracle Yes Sun Java System Web Server Proprietary software
Oracle Application Server 10g Oracle Yes Proprietary software
Pramati Server Pramati Yes v5.0 Proprietary software
Trifork T4 Trifork Yes Proprietary software
Sybase Enterprise Application Server[49] Sybase Yes Proprietary software

See also

References

  1. "Differences between Java EE and Java SE - Your First Cup: An Introduction to the Java EE Platform". Docs.oracle.com. 2012-04-01. Retrieved 2012-07-18.
  2. "Minimal 3-tier Java EE app, without any XML config - J-Development".
  3. 1 2 "The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 342".
  4. Wieldt, Tori. "Introducing Java EE 7: June 12 Kickoff".
  5. "Java EE 8 Roadmap Update (The Aquarium)".
  6. "The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 316".
  7. 1 2 "Java EE Compatibility".
  8. 1 2 "Comparing GlassFish Open Source Edition versions 2.x and 3.0.x".
  9. "Java EE Compatibility". Java.sun.com. 2010-09-07. Retrieved 2012-07-18.
  10. http://docs.oracle.com/middleware/1221/wls/NOTES/whatsnew.htm#NOTES379
  11. "WebLogic Now Java EE 7 Compatible! (The Aquarium)".
  12. "Oracle Weblogic Server 12.1.1".
  13. http://wcc.on24.com/event/37/57/27/rt/1/documents/player_docanchr_3/weblogic12c_launch_tech_webinar_v8.pdf
  14. wildfly.org/about/#compliant
  15. "[WFLY-469] Parent Issue for Java EE 7 Support - JBoss Issue Tracker".
  16. http://lists.jboss.org/pipermail/wildfly-dev/2013-May/000062.html
  17. "JBoss AS 7.1.0.Final "Thunder" released - Java EE 6 Full Profile certified! | My Wiki | Planet JBoss Community". Planet.jboss.org. 2012-02-17. Retrieved 2012-07-18.
  18. "JBoss Application Server - JBoss Community".
  19. "JBoss Application Server - JBoss Community".
  20. "Java EE Compatibility".
  21. "JBoss AS is now EE5 certified!". 15 September 2008.
  22. "JBoss EAP 7.0 Compatility Configuration".
  23. Business Wire (2012-06-20). "Red Hat Launches JBoss Enterprise Application Platform 6 to Help Enterprises Move Application Development and Deployment to the Cloud". Business Wire. Retrieved 2012-07-18.
  24. "Websphere AppServer 9 Configuration".
  25. "What's new in WebSphere Application Server V8". Ibm.com. Retrieved 2012-07-18.
  26. oracle.com/technetwork/java/javaee/overview/waslibertyprofile8556-2587134.html
  27. "Java EE 7 has landed in WAS Liberty - WASdev". 25 June 2015.
  28. "IBM Java EE 6 Web Profile Tested Configurations".
  29. "Apache Geronimo fully certified for Java EE 6 - The H Open: News and Features". H-online.com. 2011-11-14. Archived from the original on 20 April 2012. Retrieved 2012-07-18.
  30. "TMAX JEUS 8 Tested Configuration".
  31. http://tmaxsoft.com/product/jeus/certification
  32. "TmaxSoft JEUS 8 Now Java EE 7 Compatible! (The Aquarium)".
  33. "Tested Configurations, Java EE 6 - TMAX JEUS 7". Oracle.com. 2010-09-07. Retrieved 2012-07-18.
  34. "Java EE6 Web Application Server, WAS Software". Us.tmaxsoft.com. Retrieved 2012-07-18.
  35. "Cosminexus: Hitachi Application Server".
  36. "Hitachi Cosminexus Now Java EE 7 Compatible! (The Aquarium)".
  37. "Java EE 6 - Tested Configurations, Java EE 6 - Hitachi uCosminexus Application Server v9.0". Oracle.com.
  38. Fujitsu Interstage Application Server powered by Windows Azure
  39. "Tested Configurations, Java EE6 - Fujitsu Interstage". Oracle.com. 2010-09-07. Retrieved 2012-07-18.
  40. "Fujitsu Releases Interstage Application Server V10.1". Fujitsu.
  41. "NEC WebOTX Application Server V9.x Certification".
  42. http://www.caucho.com/articles/Caucho_Web%20Profile%20JavaEE6_whitepaper_byRR.pdf
  43. "Apache TomEE". Openejb.apache.org. Retrieved 2012-07-18.
  44. "MarketWatch.com". MarketWatch.com. Retrieved 2012-07-18.
  45. TomEE, Apache. "Apache TomEE 7.0.1".
  46. "Please Welcome Siwpas as Java EE Certified Option!". Oracle.com. Retrieved 2015-12-07.
  47. http://jonas.ow2.org/xwiki/bin/view/Blog/JOnAS+530+RC1+released
  48. "SAP NetWeaver Cloud Java EE 6 Web Profile Certified! (The Aquarium)".
  49. "SAP Software Solutions - Business Applications and Technology".
Wikimedia Commons has media related to Java EE.
This article is issued from Wikipedia - version of the 12/4/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.