Java Reference
In-Depth Information
Note Query strings are supported only for the GET method. There are other HTTP protocol methods, such as
POST, DELETE, and PUT.
A web application is a collection of web components that work together to provide a specific
functionality on the Web. In the Java EE specification, a web component is defined to be either a
Servlet or a Java Server Page (JSP) page.
Note Other than servlets and JSP pages, a web application may also comprise static resources such
as HTML documents, images, and the metadata or configuration files that define properties of the web
application; however, these are not considered to be web components.
The web application and its constituent components are managed and executed inside the web
container, also called a servlet container , which provides additional features to the web application
such as security. When the web server gets a request for specific functionality that a particular web
component (such as a servlet or a JSP page) can provide, the web server forwards the request to
the servlet container in which the web component resides. All requests for the dynamic content
(that is, all requests to the web component that is responsible for generating the dynamic content)
are mediated by the servlet container, as shown in Figure 2-2 .
Figure 2-2. Request for dynamic content
The Java EE Servlet and JSP specifications describe the service contract that a servlet container
must provide and specify how a servlet should use those services. In terms of implementation,
a servlet is a Java class that acts as a dynamic web resource.
Servlets
Servlets are the central processing unit of a Java web application and are responsible for most of the
processing required by a web application. Specifically, a servlet is a Java class that implements the
javax.servlet.Servlet interface. The Servlet interface defines the methods that all servlets must
implement. “One ring to rule them all!” This interface, along with other methods, defines key life-cycle
 
Search WWH ::




Custom Search