-
Learning by doing
-
Trainers with practical experience
-
Classroom training
-
Detailed course material
-
Clear content description
-
Tailormade content possible
-
Training that proceeds
-
Small groups
Java Enterprise Edition (Jakarta EE or JEE) is a standard for developing large-scale Java applications with hundreds of thousands of simultaneous users. The Jakarta EE platform has Java Standard Edition (Java SE) as the underlying layer. Jakarta EE is implemented by application servers such as JBoss, WebLogic, GlassFish and Tomcat EE. SpiralTrain provides both basic classroom and advanced classroom training in Jakarta EE.
Visit our LinkedIn, Facebook or Instagram page for an impression of SpiralTrain. Click on the links below for more information about the courses and the schedule.
The Jakarta EE platform uses a multitiered distributed application model. This means application logic is divided into components according to function, and the various application components that make up a Jakarta EE application are installed on different machines depending on which tier in the multitiered Jakarta EE environment the application component belongs.
The Jakarta EE application parts are :
Jakarta EE multitiered applications are generally considered to be three-tiered applications because they are distributed over three different locations: client machines, Jakarta EE server machine, and the database or legacy machines at the back-end. Three-tiered applications that run in this way extend the standard two-tiered client and server model by placing a multithreaded application server between the client application and back-end storage.
Jakarta EE web components can be either JSP pages or servlets. Servlets are Java programming language classes that dynamically process requests and construct responses. JSP pages are text-based documents that contain static content and snippets of Java programming language code to generate dynamic content. When a JSP page loads, a background servlet executes the code snippets and returns a response.
Business code, which is logic that solves or meets the needs of a particular business domain such as banking, retail, or finance, is handled by enterprise beans running in the business tier. An enterprise bean receives data from client programs, processes it and sends it to the enterprise information system tier for storage. An enterprise bean also retrieves data from storage, processes it, and sends it back to the client program.
There are two kinds of enterprise beans: session beans and message-driven beans. A session bean represents a transient conversation with a client. When the client finishes executing, the session bean and its data are gone. A message-driven bean combines features of a session bean and a Java Message Service (JMS) message listener, allowing a business component to receive JMS messages asynchronously
The enterprise information system tier handles enterprise information system software, and includes enterprise infrastructure systems such as enterprise resource planning (ERP), mainframe transaction processing, database systems, and other legacy information systems. Jakarta EE application components might need access to enterprise information systems for database connectivity, for example.