Java - J2EE Web components

Java Conceptuel Diagram

About

J2EE Web components can be either:

Servlets are Java programming language classes that dynamically process requests and construct responses. JSP pages are text-based documents that execute as servlets but allow a more natural approach to creating static content.

Non J2EE Web Component: This component are bundled with Web components during application assembly but are not considered Web components by the J2EE specification:

  • Static HTML pages and applets
  • Server-side utility classes





Discover More
Glassfish Installation
Glassfish - Installation (with J2EE)

To install J2EE, you must download it. Java EE 6 SDK Update 3: A free integrated development kit used to build, test, and deploy Java...
Java Conceptuel Diagram
J2EE - Session Bean

A session bean encapsulates business logic that can be invoked programmatically by a client over local, remote, or web service client views. To access an application that is deployed on the server, the...
Java Conceptuel Diagram
Java - Applet

An applet is a small client application written in the Java programming language that executes in the Java virtual machine installed in the Web browser. However, client systems will likely need the Java...
Java Conceptuel Diagram
Java - Application

An application in shipped in an archive format with a main class that contains a main method that starts the application. instancejava/lang/Runtimeclass RuntimeOperating System environment ...
J2ee Server
Java - Application Server

application server in Java A J2EE Server is application server on the J2EE platform. It contains the web-tier and the business tier where the components are placed in logical container. Tier Components...
Java Conceptuel Diagram
Java - Application Server Log / Debug

One way to debug applications on a J2EE application server is to look at the server log. The log contains output from the Server and your applications. You can log messages from any Java class in your...
J2ee Server
Java - Container

A container is a logical part of a J2EE Server which contains java components Before any component can be executed, it must be assembled. The assembly process involves per logical container: the...
J2ee Ear Structure
Java - Packaging, Archive, Library (JAR, WAR, EAR File)

For deployment purpose, J2EE applications are delivered and reside in Archive files (or unit). A RAR, WAR or EAR file is a standard JAR (.jar) file with a .war or .ear extension. Each archive extension...
Java Conceptuel Diagram
Java - Servlet Java class

A Servlet is an java object that receives a HTTP request and generates a HTTP response based on that request. A Java servlet is: a J2ee web component that responds to HTTP requests. a HTTP-specific...
Java Conceptuel Diagram
Java - Web Application (Web Module) - War

Web application in Java. A Java web application serve and/or generates interactive HTML web pages. An enterprise application may contain zero or more web applications. A web application is generally...



Share this page:
Follow us:
Task Runner