![]() |
|
Java Card | |
---|---|
Micro Edition (ME) | |
Standard Edition (SE) | |
Enterprise Edition (EE) | |
PersonalJava (discontinued) |
Java Platform, Enterprise Edition or Java EE is a widely used platform for server programming in the Java programming language. The Java platform (Enterprise Edition) differs from the Java Standard Edition Platform (Java SE) in that it adds libraries which provide functionality to deploy fault-tolerant, distributed, multi-tier Java software, based largely on modular components running on an application server.
Contents |
The platform was known as Java 2 Platform, Enterprise Edition or J2EE until the name was changed to Java EE in version 5. The current version is called Java EE 6.
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 JDBC, 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, portlets (following the Java Portlet specification), 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 that are deployed to it, in order to enable developers to concentrate more on the business logic of the components rather than on infrastructure and integration tasks.
The Java EE APIs includes several technologies that extend the functionality of the base Java SE APIs.
javax.ejb
.*
The Enterprise JavaBean 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.enterprise.inject
.*
These packages define the injection annotations for the Contexts and Dependency Injection (CDI) API.
javax.enterprise.context
.*
These packages define the context (scope) annotations and interfaces for the Contexts and Dependency Injection (CDI) API
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.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 (JSF) 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.persistence
This package contains the classes and interfaces that define the contracts between a persistence provider and the managed classes and the clients of the Java Persistence API (JPA).
javax.xml.stream
This package contains readers and writers for XML streams.
javax.resource
.*
This package defines the Java EE Connector Architecture 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.
Although by definition all Java EE implementations provide the same base level of technologies (namely, the Java EE spec), they can differ considerably with respect to extra features, installed size, memory footprint, startup time, etc.[5].
|