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...
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...
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...
J2ee Multitier Architecture
Java EE - (J2EE|JEE) Platform

The J2EE platform offers: a multitiered distributed application model, the ability to reuse components, integrated Extensible Markup Language (XML)-based data interchange, a unified security...
Java Conceptuel Diagram
Java Web Application - Mapping URLs to Web Components (context-root, url pattern)

When it receives a request, the web container determine the web component that should handle the request via the URL A URL path contains the context root and, optionally, a URL pattern: The web container...



Share this page:
Follow us:
Task Runner