Java Servlet Specification
Java Servlet Specification
Version 2.4
Please send technical comments to: servletapi-feedback@eng.sun.com
Please send business comments to: yutaka.yoshida@sun.com
Sun also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, limited license
(without the right to sublicense) under any applicable copyrights or patent rights it may have in the
Specification to create and/or distribute an Independent Implementation of the Specification that: (i)
fully implements the Spec(s) including all its required interfaces and functionality; (ii) does not modify,
subset, superset or otherwise extend the Licensor Name Space, or include any public or protected pack-
ages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those
required/authorized by the Specification or Specifications being implemented; and (iii) passes the TCK
(including satisfying the requirements of the applicable TCK Users Guide) for such Specification. The
foregoing license is expressly conditioned on your not acting outside its scope. No license is granted
hereunder for any other purpose.
You need not include limitations (i)-(iii) from the previous paragraph or any other particular "pass
through" requirements in any license You grant concerning the use of your Independent Implementa-
tion or products derived from it. However, except with respect to implementations of the Specification
(and products derived from them) that satisfy limitations (i)-(iii) from the previous paragraph, You may
neither: (a) grant or otherwise pass through to your licensees any licenses under Sun’s applicable intel-
lectual property rights; nor (b) authorize your licensees to make any claims concerning their implemen-
tation’s compliance with the Spec in question.
For the purposes of this Agreement: "Independent Implementation" shall mean an implementation of
the Specification that neither derives from any of Sun’s source code or binary code materials nor, except
with an appropriate and separate license from Sun, includes any of Sun’s source code or binary code
materials; and "Licensor Name Space" shall mean the public class or interface declarations whose
names begin with "java", "javax", "com.sun" or their equivalents in any subsequent naming convention
adopted by Sun through the Java Community Process, or any recognized successors or replacements
thereof.
This Agreement will terminate immediately without notice from Sun if you fail to comply with any
material provision of or act outside the scope of the licenses granted above.
4
TRADEMARKS
No right, title, or interest in or to any trademarks, service marks, or trade names of Sun or Sun’s licensors is
granted hereunder. Sun, Sun Microsystems, the Sun logo, Java, the Java Coffee Cup logo, JSP, and JavaSer-
ver Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
DISCLAIMER OF WARRANTIES
THE SPECIFICATION IS PROVIDED "AS IS". SUN MAKES NO REPRESENTATIONS OR WARRAN-
TIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT
THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY
PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD
PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This document does not
represent any commitment to release or implement any portion of the Specification in any product.
LIMITATION OF LIABILITY
TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE
LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS
OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAM-
AGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT
OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE
SPECIFICATION, EVEN IF SUN AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSI-
BILITY OF SUCH DAMAGES.
You will indemnify, hold harmless, and defend Sun and its licensors from any claims arising or resulting
from: (i) your use of the Specification; (ii) the use or distribution of your Java application, applet and/or clean
room implementation; and/or (iii) any claims that later versions or releases of any Specification furnished to
you are incompatible with the Specification provided to you under this license.
REPORT
You may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with
your use of the Specification ("Feedback"). To the extent that you provide Sun with any Feedback, you
hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii)
grant Sun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to subli-
cense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feed-
back for any purpose related to the Specification and future versions, implementations, and test suites
thereof.
(LFI#X136182/Form ID#011801)
5
6
Contents
7
CONTENTS 8
SRV.5.1 Buffering . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
SRV.5.2 Headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
SRV.5.3 Convenience Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
SRV.5.4 Internationalization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
SRV.5.5 Closure of Response Object . . . . . . . . . . . . . . . . . . . . . . 47
SRV.5.6 Lifetime of the Response Object . . . . . . . . . . . . . . . . . . . 47
SRV.6 Filtering. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
SRV.6.1 What is a filter? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
SRV.6.1.1 Examples of Filtering Components . . . . . . . . . . 50
SRV.6.2 Main Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
SRV.6.2.1 Filter Lifecycle . . . . . . . . . . . . . . . . . . . . . . . . . . 51
SRV.6.2.2 Wrapping Requests and Responses . . . . . . . . . . 52
SRV.6.2.3 Filter Environment . . . . . . . . . . . . . . . . . . . . . . . 53
SRV.6.2.4 Configuration of Filters in a Web Application . . 53
SRV.6.2.5 Filters and the RequestDispatcher . . . . . . . . . . . 55
SRV.7 Sessions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
SRV.7.1 Session Tracking Mechanisms . . . . . . . . . . . . . . . . . . . . 57
SRV.7.1.1 Cookies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
SRV.7.1.2 SSL Sessions . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
SRV.7.1.3 URL Rewriting . . . . . . . . . . . . . . . . . . . . . . . . . . 58
SRV.7.1.4 Session Integrity . . . . . . . . . . . . . . . . . . . . . . . . . 58
SRV.7.2 Creating a Session . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
SRV.7.3 Session Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
SRV.7.4 Binding Attributes into a Session . . . . . . . . . . . . . . . . . . 59
SRV.7.5 Session Timeouts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
SRV.7.6 Last Accessed Times . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
SRV.7.7 Important Session Semantics . . . . . . . . . . . . . . . . . . . . . 60
SRV.7.7.1 Threading Issues . . . . . . . . . . . . . . . . . . . . . . . . . 60
SRV.7.7.2 Distributed Environments . . . . . . . . . . . . . . . . . . 60
SRV.7.7.3 Client Semantics . . . . . . . . . . . . . . . . . . . . . . . . . 61
SRV.8 Dispatching Requests. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
SRV.8.1 Obtaining a RequestDispatcher . . . . . . . . . . . . . . . . . . . . 63
SRV.8.1.1 Query Strings in Request Dispatcher Paths . . . . 64
SRV.8.2 Using a Request Dispatcher . . . . . . . . . . . . . . . . . . . . . . 64
CONTENTS 10
This document is the Java™ Servlet Specification, version 2.4. The standard for
the Java Servlet API is described herein.
• A reference implementation (RI) has been made available which provides a be-
havioral benchmark for this specification. Where the specification leaves im-
plementation of a particular feature open to interpretation, implementors may
use the reference implementation as a model of how to carry out the intention
of the specification.
• A compatibility test suite (CTS) has been provided for assessing whether im-
plementations meet the compatibility requirements of the Java Servlet API
standard. The test results have normative value for resolving questions about
whether an implementation is standard.
• If further clarification is required, the working group for the Java Servlet API
under the Java Community Process should be consulted, and is the final arbiter
of such issues.
Comments and feedback are welcome, and will be used to improve future ver-
sions.
15
16 PREFACE
The intended audience for this specification includes the following groups:
• Web server and application server vendors that want to provide servlet engines
that conform to this standard.
• Authoring tool developers that want to support Web applications that conform
to this specification
• Experienced servlet authors who want to understand the underlying mecha-
nisms of servlet technology.
We emphasize that this specification is not a user’s guide for servlet develop-
ers and is not intended to be used as such. References useful for this purpose are
available from http://java.sun.com/products/servlet.
The following Java API specifications are referenced throughout this specifica-
tion:
Final Version
Other Important References 17
1.
This reference is mostly tongue-in-cheek although most of the concepts
described in the HTCPCP RFC are relevant to all well-designed Web
servers.
18 PREFACE
http://java.sun.com/xml
http://www.xml.org/
We welcome any and all feedback about this specification. Please e-mail your
comments to servletapi-feedback@eng.sun.com.
Please note that due to the volume of feedback that we receive, you will not
normally receive a reply from an engineer. However, each and every comment is
read, evaluated, and archived by the specification team.
SRV.P.7 Acknowledgements
The servlet specification has now undergone a number of revisions since the
first version, and the contributors to this specification are many and various. For
the version 2.4, we’d like to thank the members of the JSR154 expert group for
their continued contributions: Nathan Abramson (ATG), Vinod Mehra (BEA),
Kevin Jones (Developmentor), Timothy Julien (HP), Jason Hunter (Individual),
Jon Stephens (Individual), Pier Fumagali (Apache), Karl Adeval (Orion), Hans
Bergsten (Individual), Tim Ampe (Persistence Software), Jason McGee (IBM),
Nic Ferrier (Individual), Rod Johnson (Individual), Bryan Astatt (Oracle), John
Rousseau (Silverstream), Paul Bonafanti (New Atlanta), Karl Moss (Macrome-
dia), Larry Isaacs (SAS), Vishy Kasar (Borland), BV Prasad (Pramati), Bill
DeHora (InterX), Randal Hanford (Boeing), Ciaran Dynes (Iona), Ana von Klopp
(Sun), Jeff Plager (Sybase), Shawn McMurdo (Lutris), Greg Wilkins (Mort Bay
Consulting).
We’d like to thank the many people from the Java Community who have sent us
feedback on the specification.
Finally we thank fellow colleagues at Sun who have provided feedback and com-
ment, in particular Bill Shannon, Mark Hapner, Craig McClanahan, Eduardo Pele-
gri-Llopart, and Mark Roth for applying continued technical critique and support
of the specification, Umit Yalcinalp for a design of XML Schema and the extensi-
bility, conversion, and technical support for it, and Debbie Carson for the editorial
work throughout this specification.
Final Version
C H A P T E R SRV.1
Overview
The servlet container is a part of a Web server or application server that provides the
network services over which requests and responses are sent, decodes MIME-based
requests, and formats MIME-based responses. A servlet container also contains and
manages servlets through their lifecycle.
A servlet container can be built into a host Web server, or installed as an add-
on component to a Web Server via that server’s native extension API. Servlet con-
tainers can also be built into or possibly installed into Web-enabled application
servers.
All servlet containers must support HTTP as a protocol for requests and
responses, but additional request/response-based protocols such as HTTPS
(HTTP over SSL) may be supported. The required versions of the HTTP specifi-
cation that a container must implement are HTTP/1.0 and HTTP/1.1. Because the
container may have a caching mechanism described in RFC2616(HTTP/1.1), it
may modify requests from the clients before delivering them to the servlet, may
modify responses produced by servlets before sending them to the clients, or may
19
20 OVERVIEW
respond to requests without delivering them to the servlet under the compliance
with RFC2616.
A servlet container may place security restrictions on the environment in
which a servlet executes. In a Java 2 Platform, Standard Edition (J2SETM, v.1.3 or
above) or Java 2 Platform, Enterprise Edition (J2EETM, v.1.3 or above) environ-
ment, these restrictions should be placed using the permission architecture defined
by the Java 2 platform. For example, high-end application servers may limit the
creation of a Thread object to insure that other components of the container are
not negatively impacted.
J2SE 1.3 is the minimum version of the underlying Java platform with which
servlet containers must be built.
SRV.1.3 An Example
1. A client (e.g., a Web browser) accesses a Web server and makes an HTTP re-
quest.
2. The request is received by the Web server and handed off to the servlet con-
tainer. The servlet container can be running in the same process as the host
Web server, in a different process on the same host, or on a different host from
the Web server for which it processes requests.
3. The servlet container determines which servlet to invoke based on the config-
uration of its servlets, and calls it with objects representing the request and re-
sponse.
4. The servlet uses the request object to find out who the remote user is, what
HTTP POST parameters may have been sent as part of this request, and other
relevant data. The servlet performs whatever logic it was programmed with,
and generates data to send back to the client. It sends this data back to the client
via the response object.
5. Once the servlet has finished processing the request, the servlet container en-
sures that the response is properly flushed, and returns control back to the host
Web server.
Final Version
Comparing Servlets with Other Technologies 21
• They are generally much faster than CGI scripts because a different process
model is used.
• They use a standard API that is supported by many Web servers.
• They have all the advantages of the Java programming language, including
ease of development and platform independence.
• They can access the large set of APIs available for the Java platform.
The Java Servlet API v.2.4 is a required API of the Java 2 Platform, Enterprise Edi-
tion, v.1.41. Servlet containers and servlets deployed into them must meet additional
requirements, described in the J2EE specification, for executing in a J2EE environ-
ment.
This section describes the compatibility issues introduced in this version of the spec-
ification.
SRV.1.6.1 HttpSessionListener.sessionDestroyed
In the previous versions of the specification, this method was defined as:
Notification that a session was invalidated.
1.
Please see the JavaTM 2 Platform, Enterprise Edition specification avail-
able at http://java.sun.com/j2ee/
22 OVERVIEW
so that it notifies before the session invalidation. If the code assumed the pre-
vious behavior, it must be modified to match the new behavior.
Be aware that this addition causes source incompatibility in some cases, such
as when a developer implements the ServletRequest interface. In this case, ensure
that all the new methods are implemented.
Final Version
C H A P T E R SRV.2
The Servlet Interface
The Servlet interface is the central abstraction of the Java Servlet API. All servlets
implement this interface either directly, or more commonly, by extending a class
that implements the interface. The two classes in the Java Servlet API that imple-
ment the Servlet interface are GenericServlet and HttpServlet. For most pur-
poses, Developers will extend HttpServlet to implement their servlets.
The basic Servlet interface defines a service method for handling client requests.
This method is called for each request that the servlet container routes to an instance
of a servlet.
The handling of concurrent requests to a Web application generally requires
that the Web Developer design servlets that can deal with multiple threads execut-
ing within the service method at a particular time.
Generally the Web container handles concurrent requests to the same servlet
by concurrent execution of the service method on different threads.
23
24 THE SERVLET INTERFACE
The servlet declaration which is part of the deployment descriptor of the Web appli-
cation containing the servlet, as described in Chapter SRV.13, “Deployment
Descriptor”, controls how the servlet container provides instances of the servlet.
For a servlet not hosted in a distributed environment (the default), the servlet
container must use only one instance per servlet declaration. However, for a serv-
let implementing the SingleThreadModel interface, the servlet container may
instantiate multiple instances to handle a heavy request load and serialize requests
to a particular instance.
Final Version
Servlet Life Cycle 25
A servlet is managed through a well defined life cycle that defines how it is loaded
and instantiated, is initialized, handles requests from clients, and is taken out of ser-
vice. This life cycle is expressed in the API by the init, service, and destroy
methods of the javax.servlet.Servlet interface that all servlets must implement
directly or indirectly through the GenericServlet or HttpServlet abstract classes.
SRV.2.3.2 Initialization
After the servlet object is instantiated, the container must initialize the servlet before
it can handle requests from clients. Initialization is provided so that a servlet can
read persistent configuration data, initialize costly resources (such as JDBC™ API-
based connections), and perform other one-time activities. The container initializes
the servlet instance by calling the init method of the Servlet interface with a
unique (per servlet declaration) object implementing the ServletConfig interface.
This configuration object allows the servlet to access name-value initialization
parameters from the Web application’s configuration information. The configuration
object also gives the servlet access to an object (implementing the ServletContext
interface) that describes the servlet’s runtime environment. See Chapter SRV.3,
“Servlet Context” for more information about the ServletContext interface.
Final Version
Servlet Life Cycle 27
In the case of an HTTP request, the objects provided by the container are of
types HttpServletRequest and HttpServletResponse.
Note that a servlet instance placed into service by a servlet container may han-
dle no requests during its lifetime.
status along with a Retry-After header indicating when the unavailability will
terminate.
The container may choose to ignore the distinction between a permanent and
temporary unavailability and treat all UnavailableExceptions as permanent,
thereby removing a servlet that throws any UnavailableException from service.
Final Version
Servlet Life Cycle 29
Once the destroy method is called on a servlet instance, the container may
not route other requests to that instance of the servlet. If the container needs to
enable the servlet again, it must do so with a new instance of the servlet’s class.
After the destroy method completes, the servlet container must release the
servlet instance so that it is eligible for garbage collection.
30 THE SERVLET INTERFACE
Final Version
C H A P T E R SRV.3
Servlet Context
There is one instance object of the ServletContext interface associated with each
Web application deployed into a container. In cases where the container is
distributed over many virtual machines, a Web application will have an instance of
the ServletContext for each JVM.
Servlets in a container that were not deployed as part of a Web application are
implicitly part of a “default” Web application and have a default ServletContext.
In a distributed container, the default ServletContext is non-distributable and
must only exist in one JVM.
31
32 SERVLET CONTEXT
The following methods of the ServletContext interface allow the servlet access to
context initialization parameters associated with a Web application as specified by
the Application Developer in the deployment descriptor:
• getInitParameter
• getInitParameterNames
A servlet can bind an object attribute into the context by name. Any attribute bound
into a context is available to any other servlet that is part of the same Web
application. The following methods of ServletContext interface allow access to
this functionality:
• setAttribute
• getAttribute
• getAttributeNames
• removeAttribute
Final Version
Resources 33
SRV.3.5 Resources
The ServletContext interface provides direct access only to the hierarchy of static
content documents that are part of the Web application, including HTML, GIF, and
JPEG files, via the following methods of the ServletContext interface:
• getResource
• getResourceAsStream
Web servers may support multiple logical hosts sharing one IP address on a server.
This capability is sometimes referred to as "virtual hosting". In this case, each
logical host must have its own servlet context or set of servlet contexts. Servlet
contexts can not be shared across virtual hosts.
1.
The JavaServer PagesTM specification can be found at http://
java.sun.com/products/jsp
34 SERVLET CONTEXT
2.
An exception is system classes that the servlet may use in a different class
loader.
Final Version
CHAPTER SRV.4
The Request
The request object encapsulates all information from the client request. In the HTTP
protocol, this information is transmitted from the client to the server in the HTTP
headers and the message body of the request.
Request parameters for the servlet are the strings sent by the client to a servlet
container as part of its request. When the request is an HttpServletRequest object,
and conditions set out in “When Parameters Are Available” on page 36 are met, the
container populates the parameters from the URI query string and POST-ed data.
The parameters are stored as a set of name-value pairs. Multiple parameter
values can exist for any given parameter name. The following methods of the
ServletRequest interface are available to access parameters:
• getParameter
• getParameterNames
• getParameterValues
• getParameterMap
35
36 THE REQUEST
The following are the conditions that must be met before post form data will
be populated to the parameter set:
If the conditions are not met and the post form data is not included in the
parameter set, the post data must still be available to the servlet via the request
object’s input stream. If the conditions are met, post form data will no longer be
available for reading directly from the request object’s input stream.
SRV.4.2 Attributes
Attributes are objects associated with a request. Attributes may be set by the
container to express information that otherwise could not be expressed via the API,
or may be set by a servlet to communicate information to another servlet (via the
RequestDispatcher). Attributes are accessed with the following methods of the
ServletRequest interface:
• getAttribute
• getAttributeNames
• setAttribute
Final Version
Headers 37
Attribute names beginning with the prefixes of “java.” and “javax.” are
reserved for definition by this specification. Similarly, attribute names beginning
with the prefixes of “sun.”, and “com.sun.” are reserved for definition by Sun
Microsystems. It is suggested that all attributes placed in the attribute set be
named in accordance with the reverse domain name convention suggested by the
Java Programming Language Specification1 for package naming.
SRV.4.3 Headers
A servlet can access the headers of an HTTP request through the following methods
of the HttpServletRequest interface:
• getHeader
• getHeaders
• getHeaderNames
The getHeader method returns a header given the name of the header. There can
be multiple headers with the same name, e.g. Cache-Control headers, in an HTTP
request. If there are multiple headers with the same name, the getHeader method
returns the first header in the request. The getHeaders method allows access to all
the header values associated with a particular header name, returning an
Enumeration of String objects.
Headers may contain String representations of int or Date data. The
following convenience methods of the HttpServletRequest interface provide
access to header data in a one of these formats:
• getIntHeader
• getDateHeader
1.
The Java Programming Language Specification is available at http://
java.sun.com/docs/books/jls
38 THE REQUEST
The request path that leads to a servlet servicing a request is composed of many
important sections. The following elements are obtained from the request URI path
and exposed via the request object:
• Context Path: The path prefix associated with the ServletContext that this
servlet is a part of. If this context is the “default” context rooted at the base of
the Web server’s URL name space, this path will be an empty string. Other-
wise, if the context is not rooted at the root of the server’s name space, the path
starts with a’/’ character but does not end with a’/’ character.
• Servlet Path: The path section that directly corresponds to the mapping
which activated this request. This path starts with a’/’ character except in the
case where the request is matched with the ‘/*’ pattern, in which case it is an
empty string.
• PathInfo: The part of the request path that is not part of the Context Path or
the Servlet Path. It is either null if there is no extra path, or is a string with a
leading ‘/’.
• getContextPath
• getServletPath
• getPathInfo
It is important to note that, except for URL encoding differences between the
request URI and the path parts, the following equation is always true:
To give a few examples to clarify the above points, consider the following:
Final Version
Path Translation Methods 39
There are two convenience methods in the API which allow the Developer to obtain
the file system path equivalent to a particular path. These methods are:
• ServletContext.getRealPath
• HttpServletRequest.getPathTranslated
SRV.4.6 Cookies
client to the server on every request that the client makes. Typically, the only
information that the client sends back as part of a cookie is the cookie name and the
cookie value. Other cookie attributes that can be set when the cookie is sent to the
browser, such as comments, are not typically returned.
If a request has been transmitted over a secure protocol, such as HTTPS, this
information must be exposed via the isSecure method of the ServletRequest
interface. The Web container must expose the following attributes to the servlet
programmer:
SRV.4.8 Internationalization
Clients may optionally indicate to a Web server what language they would prefer the
response be given in. This information can be communicated from the client using
the Accept-Language header along with other mechanisms described in the HTTP/
1.1 specification. The following methods are provided in the ServletRequest
interface to determine the preferred locale of the sender:
Final Version
Request data encoding 41
• getLocale
• getLocales
The getLocale method will return the preferred locale for which the client
wants to accept content. See section 14.4 of RFC 2616 (HTTP/1.1) for more
information about how the Accept-Language header must interpreted to determine
the preferred language of the client.
The getLocales method will return an Enumeration of Locale objects
indicating, in decreasing order starting with the preferred locale, the locales that
are acceptable to the client.
If no preferred locale is specified by the client, the locale returned by the
getLocale method must be the default locale for the servlet container and the
getLocales method must contain an enumeration of a single Locale element of
the default locale.
Currently, many browsers do not send a char encoding qualifier with the Content-
Type header, leaving open the determination of the character encoding for reading
HTTP requests. The default encoding of a request the container uses to create the
request reader and parse POST data must be “ISO-8859-1” if none has been
specified by the client request. However, in order to indicate to the developer in this
case the failure of the client to send a character encoding, the container returns null
from the getCharacterEncoding method.
If the client hasn’t set character encoding and the request data is encoded with
a different encoding than the default as described above, breakage can occur. To
remedy this situation, a new method setCharacterEncoding(String enc) has
been added to the ServletRequest interface. Developers can override the
character encoding supplied by the container by calling this method. It must be
called prior to parsing any post data or reading any input from the request. Calling
this method once data has been read will not affect the encoding.
Each request object is valid only within the scope of a servlet’s service method, or
within the scope of a filter’s doFilter method. Containers commonly recycle
request objects in order to avoid the performance overhead of request object
creation. The developer must be aware that maintaining references to request objects
42 THE REQUEST
outside the scope described above is not recommended as it may have indeterminate
results.
Final Version
C H A P T E R SRV.5
The Response
The response object encapsulates all information to be returned from the server to
the client. In the HTTP protocol, this information is transmitted from the server to
the client either by HTTP headers or the message body of the request.
SRV.5.1 Buffering
A servlet container is allowed, but not required, to buffer output going to the client
for efficiency purposes. Typically servers that do buffering make it the default, but
allow servlets to specify buffering parameters.
The following methods in the ServletResponse interface allow a servlet to
access and set buffering information:
• getBufferSize
• setBufferSize
• isCommitted
• reset
• resetBuffer
• flushBuffer
43
44 THE RESPONSE
The servlet can request a preferred buffer size by using the setBufferSize
method. The buffer assigned is not required to be the size requested by the servlet,
but must be at least as large as the size requested. This allows the container to
reuse a set of fixed size buffers, providing a larger buffer than requested if
appropriate. The method must be called before any content is written using a
ServletOutputStream or Writer. If any content has been written or the response
object has been committed, this method must throw an IllegalStateException.
The isCommitted method returns a boolean value indicating whether any
response bytes have been returned to the client. The flushBuffer method forces
content in the buffer to be written to the client.
The reset method clears data in the buffer when the response is not
committed. Headers and status codes set by the servlet prior to the reset call must
be cleared as well. The resetBuffer method clears content in the buffer if the
response is not committed without clearing the headers and status code.
If the response is committed and the reset or resetBuffer method is called,
an IllegalStateException must be thrown. The response and its associated
buffer will be unchanged.
When using a buffer, the container must immediately flush the contents of a
filled buffer to the client. If this is the first data is sent to the client, the response is
considered to be committed.
SRV.5.2 Headers
A servlet can set headers of an HTTP response via the following methods of the
HttpServletResponse interface:
• setHeader
• addHeader
The setHeader method sets a header with a given name and value. A previous
header is replaced by the new header. Where a set of header values exist for the
name, the values are cleared and replaced with the new value.
The addHeader method adds a header value to the set with a given name. If
there are no headers already associated with the name, a new set is created.
Headers may contain data that represents an int or a Date object. The
following convenience methods of the HttpServletResponse interface allow a
servlet to set a header using the correct formatting for the appropriate data type:
Final Version
Convenience Methods 45
• setIntHeader
• setDateHeader
• addIntHeader
• addDateHeader
• sendRedirect
• sendError
The sendRedirect method will set the appropriate headers and content body
to redirect the client to a different URL. It is legal to call this method with a
relative URL path, however the underlying container must translate the relative
path to a fully qualified URL for transmission back to the client. If a partial URL
is given and, for whatever reason, cannot be converted into a valid URL, then this
method must throw an IllegalArgumentException.
The sendError method will set the appropriate headers and content body for
an error message to return to the client. An optional String argument can be
46 THE RESPONSE
provided to the sendError method which can be used in the content body of the
error.
These methods will have the side effect of committing the response, if it has
not already been committed, and terminating it. No further output to the client
should be made by the servlet after these methods are called. If data is written to
the response after these methods are called, the data is ignored.
If data has been written to the response buffer, but not returned to the client
(i.e. the response is not committed), the data in the response buffer must be
cleared and replaced with the data set by these methods. If the response is
committed, these methods must throw an IllegalStateException.
SRV.5.4 Internationalization
Servlets should set the locale and the character encoding of a response. The locale is
set using the ServletResponse.setLocale method. The method can be called
repeatedly; but calls made after the response is committed have no effect. If the
servlet does not set the locale before the page is committed, the container’s default
locale is used to determine the response’s locale, but no specification is made for the
communication with a client, such as Content-Language header in the case of
HTTP.
<locale-encoding-mapping-list>
<locale-encoding-mapping>
<locale>ja</locale>
<encoding>Shift_JIS</encoding>
</locale-encoding-mapping>
</locale-encoding-mapping-list>
If the element does not exist or does not provide a mapping, setLocale uses a
container dependent mapping. The setCharacterEncoding, setContentType, and
setLocale methods can be called repeatedly to change the character encoding.
Calls made after the servlet response’s getWriter method has been called or after
the response is committed have no effect on the character encoding. Calls to
setContentType set the character encoding only if the given content type string
provides a value for the charset attribute. Calls to setLocale set the character
encoding only if neither setCharacterEncoding nor setContentType has set the
character encoding before.
Final Version
Closure of Response Object 47
If the servlet does not specify a character encoding before the getWriter
method of the ServletResponse interface is called or the response is committed,
the default ISO-8859-1 is used.
Containers must communicate the locale and the character encoding used for
the servlet response’s writer to the client if the protocol in use provides a way for
doing so. In the case of HTTP, the locale is communicated via the Content-
Language header, the character encoding as part of the Content-Type header for
text media types. Note that the character encoding cannot be communicated via
HTTP headers if the servlet does not specify a content type; however, it is still
used to encode text written via the servlet response’s writer.
When a response is closed, the container must immediately flush all remaining
content in the response buffer to the client. The following events indicate that the
servlet has satisfied the request and that the response object is to be closed:
Each response object is valid only within the scope of a servlet’s service
method, or within the scope of a filter’s doFilter method. Containers
commonly recycle response objects in order to avoid the performance
overhead of response object creation. The developer must be aware that
maintaining references to response objects outside the scope described above
may lead to non-deterministic behavior.
48 THE RESPONSE
Final Version
C H A P T E R SRV.6
Filtering
Filters are Java components that allow on the fly transformations of payload and
header information in both the request into a resource and the response from a
resource
This chapter describes the Java Servlet v.2.4 API classes and methods that
provide a lightweight framework for filtering active and static content. It describes
how filters are configured in a Web application, and conventions and semantics for
their implementation.
API documentation for servlet filters is provided in Chapter SRV.14,
“javax.servlet”. The configuration syntax for filters is given by the deployment
descriptor schema in Chapter SRV.13, “Deployment Descriptor”. The reader
should use these sources as references when reading this chapter.
A filter is a reusable piece of code that can transform the content of HTTP requests,
responses, and header information. Filters do not generally create a response or
respond to a request as servlets do, rather they modify or adapt the requests for a
resource, and modify or adapt responses from a resource.
Filters can act on dynamic or static content. For the purposes of this chapter,
dynamic and static content are referred to as Web resources.
Among the types of functionality available to the developer needing to use
filters are the following:
49
50 FILTERING
• The modification of request headers and data by wrapping the request in cus-
tomized versions of the request object.
• The modification of response headers and response data by providing custom-
ized versions of the response object.
• The interception of an invocation of a resource after its call.
• Actions on a servlet, on groups of servlets, or static content by zero, one, or
more filters in a specifiable order.
• Authentication filters
• Logging and auditing filters
• Image conversion filters
• Data compression filters
• Encryption filters
• Tokenizing filters
• Filters that trigger resource access events
• XSL/T filters that transform XML content
• MIME-type chain filters
• Caching filters
The main concepts of this filtering model are described in this section.
The application developer creates a filter by implementing the
javax.servlet.Filter interface and providing a public constructor taking no
arguments. The class is packaged in the Web Archive along with the static content
and servlets that make up the Web application. A filter is declared using the <fil-
ter> element in the deployment descriptor. A filter or collection of filters can be
configured for invocation by defining <filter-mapping> elements in the
deployment descriptor. This is done by mapping filters to a particular servlet by
the servlet’s logical name, or mapping to a group of servlets and static content
resources by mapping a filter to a URL pattern.
Final Version
Main Concepts 51
After deployment of the Web application, and before a request causes the container
to access a Web resource, the container must locate the list of filters that must be
applied to the Web resource as described below. The container must ensure that it
has instantiated a filter of the appropriate class for each filter in the list, and called its
init(FilterConfig config) method. The filter may throw an exception to indicate
that it cannot function properly. If the exception is of type UnavailableException,
the container may examine the isPermanent attribute of the exception and may
choose to retry the filter at some later time.
Only one instance per <filter> declaration in the deployment descriptor is
instantiated per Java Virtual Machine (JVMTM) of the container. The container
provides the filter config as declared in the filter’s deployment descriptor, the
reference to the ServletContext for the Web application, and the set of
initialization parameters.
When the container receives an incoming request, it takes the first filter
instance in the list and calls its doFilter method, passing in the ServletRequest
and ServletResponse, and a reference to the FilterChain object it will use.
The doFilter method of a filter will typically be implemented following this
or some subset of the following pattern:
Step 4: The filter may invoke the next entity in the filter chain. The next
entity may be another filter, or if the filter making the invocation is the last
filter configured in the deployment descriptor for this chain, the next entity
is the target Web resource. The invocation of the next entity is effected by
calling the doFilter method on the FilterChain object, and passing in the
request and response with which it was called or passing in wrapped
versions it may have created.
The filter chain’s implementation of the doFilter method, provided by the
container, must locate the next entity in the filter chain and invoke its
doFilter method, passing in the appropriate request and response objects.
Alternatively, the filter chain can block the request by not making the call to
52 FILTERING
invoke the next entity, leaving the filter responsible for filling out the response
object.
Step 5: After invocation of the next filter in the chain, the filter may
examine response headers.
Step 6: Alternatively, the filter may have thrown an exception to indicate
an error in processing. If the filter throws an UnavailableException during
its doFilter processing, the container must not attempt continued
processing down the filter chain. It may choose to retry the whole chain at
a later time if the exception is not marked permanent.
Step 7: When the last filter in the chain has been invoked, the next entity
accessed is the target servlet or resource at the end of the chain.
Step 8: Before a filter instance can be removed from service by the
container, the container must first call the destroy method on the filter to
enable the filter to release any resources and perform other cleanup
operations.
Final Version
Main Concepts 53
A set of initialization parameters can be associated with a filter using the <init-
params> element in the deployment descriptor. The names and values of these
parameters are available to the filter at runtime via the getInitParameter and
getInitParameterNames methods on the filter’s FilterConfig object. Additionally,
the FilterConfig affords access to the ServletContext of the Web application for
the loading of resources, for logging functionality, and for storage of state in the
ServletContext’s attribute list.
A filter is defined in the deployment descriptor using the <filter> element. In this
element, the programmer declares the following:
<filter>
<filter-name>Image Filter</filter-name>
<filter-class>com.acme.ImageServlet</filter-class>
</filter>
Once a filter has been declared in the deployment descriptor, the assembler
uses the <filter-mapping> element to define servlets and static resources in the
Web application to which the filter is to be applied. Filters can be associated with
a servlet using the <servlet-name> element. For example, the following code
example maps the Image Filter filter to the ImageServlet servlet:
54 FILTERING
<filter-mapping>
<filter-name>Image Filter</filter-name>
<servlet-name>ImageServlet</servlet-name>
</filter-mapping>
Filters can be associated with groups of servlets and static content using the
<url-pattern> style of filter mapping:
<filter-mapping>
<filter-name>Logging Filter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Here the Logging Filter is applied to all the servlets and static content pages
in the Web application, because every request URI matches the ‘/*’ URL pattern.
When processing a <filter-mapping> element using the <url-pattern>
style, the container must determine whether the <url-pattern> matches the
request URI using the path mapping rules defined in Chapter SRV.11, “Mapping
Requests to Servlets”.
The order the container uses in building the chain of filters to be applied for a
particular request URI is as follows:
1. First, the <url-pattern> matching filter mappings in the same order that these
elements appear in the deployment descriptor.
2. Next, the <servlet-name> matching filter mappings in the same order that
these elements appear in the deployment descriptor.
Final Version
Main Concepts 55
in this chain is the last <url-pattern> matching filter in the deployment de-
scriptor for this request URI. The last filter in this chain is the filter that invokes
the first filter in the <servlet-name> matching chain, or invokes the target Web
resource if there are none.
It is expected that high performance Web containers will cache filter chains so
that they do not need to compute them on a per-request basis.
New for version 2.4 of the Java Servlet specification is the ability to configure filters
to be invoked under request dispatcher forward() and include() calls.
By using the new <dispatcher> element in the deployment descriptor, the
developer can indicate for a filter-mapping whether he would like the filter to be
applied to requests when:
For example:
56 FILTERING
<filter-mapping>
<filter-name>Logging Filter</filter-name>
<url-pattern>/products/*</url-pattern>
</filter-mapping>
would result in the Logging Filter being invoked by client requests starting /
products/... but not underneath a request dispatcher call where the request
dispatcher has path commencing /products/.... The following code:
<filter-mapping>
<filter-name>Logging Filter</filter-name>
<servlet-name>ProductServlet</servlet-name>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
would result in the Logging Filter not being invoked by client requests to the
ProductServlet, nor underneath a request dispatcher forward() call to the Prod-
uctServlet, but would be invoked underneath a request dispatcher include() call
where the request dispatcher has a name commencing ProductServlet.
Finally,
<filter-mapping>
<filter-name>Logging Filter</filter-name>
<url-pattern>/products/*</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
would result in the Logging Filter being invoked by client requests starting /
products/... and underneath a request dispatcher forward() call where the
request dispatcher has path commencing /products/....
Final Version
C H A P T E R SRV.7
Sessions
SRV.7.1.1 Cookies
Session tracking through HTTP cookies is the most used session tracking
mechanism and is required to be supported by all servlet containers.
The container sends a cookie to the client. The client will then return the
cookie on each subsequent request to the server, unambiguously associating the
request with a session. The name of the session tracking cookie must be
JSESSIONID.
Secure Sockets Layer, the encryption technology used in the HTTPS protocol, has a
built-in mechanism allowing multiple requests from a client to be unambiguously
identified as being part of a session. A servlet container can easily use this data to
define a session.
57
58 SESSIONS
http://www.myserver.com/catalog/index.html;jsessionid=1234
Web containers must be able to support the HTTP session while servicing HTTP
requests from clients that do not support the use of cookies. To fulfill this
requirement, Web containers commonly support the URL rewriting mechanism.
A session is considered “new” when it is only a prospective session and has not been
established. Because HTTP is a request-response based protocol, an HTTP session
is considered to be new until a client “joins” it. A client joins a session when session
tracking information has been returned to the server indicating that a session has
been established. Until the client joins a session, it cannot be assumed that the next
request from the client will be recognized as part of a session.
The session is considered to be “new” if either of the following is true:
These conditions define the situation where the servlet container has no
mechanism by which to associate a request with a previous request.
A Servlet Developer must design his application to handle a situation where a
client has not, can not, or will not join a session.
HttpSession objects must be scoped at the application (or servlet context) level.
The underlying mechanism, such as the cookie used to establish the session, can be
Final Version
Binding Attributes into a Session 59
the same for different contexts, but the object referenced, including the attributes in
that object, must never be shared between contexts by the container.
To illustrate this requirement with an example: if a servlet uses the
RequestDispatcher to call a servlet in another Web application, any sessions
created for and visible to the servlet being called must be different from those
visible to the calling servlet.
• valueBound
• valueUnbound
The valueBound method must be called before the object is made available via
the getAttribute method of the HttpSession interface. The valueUnbound
method must be called after the object is no longer available via the getAttribute
method of the HttpSession interface.
service method. Once the session invalidation is initiated, a new request must not
be able to see that session.
Within an application marked as distributable, all requests that are part of a session
must be handled by one Java Virtual Machine1 (“JVM”) at a time. The container
must be able to handle all objects placed into instances of the HttpSession class
using the setAttribute or putValue methods appropriately. The following
restrictions are imposed to meet these conditions:
• The container must accept objects that implement the Serializable interface.
• The container may choose to support storage of other designated objects in
the HttpSession, such as references to Enterprise JavaBeans components and
transactions.
• Migration of sessions will be handled by container-specific facilities.
1.
The terms "Java virtual machine" and "JVM" mean a virtual machine for the Java(TM) platform.
Final Version
Important Session Semantics 61
The distributed servlet container must support the mechanism necessary for
migrating objects that implement Serializable. Distributed servlet containers
that are part of a J2EE implementation must support the mechanism necessary for
migrating other J2EE objects.
These restrictions mean that the Developer is ensured that there are no
additional concurrency issues beyond those encountered in a non-distributed
container.
The Container Provider can ensure scalability and quality of service features
like load-balancing and failover by having the ability to move a session object,
and its contents, from any active node of the distributed system to a different node
of the system.
If distributed containers persist or migrate sessions to provide quality of
service features, they are not restricted to using the native JVM Serialization
mechanism for serializing HttpSessions and their attributes. Developers are not
guaranteed that containers will call readObject and writeObject methods on
session attributes if they implement them, but are guaranteed that the
Serializable closure of their attributes will be preserved.
Containers must notify any session attributes implementing the
HttpSessionActivationListener during migration of a session. They must notify
listeners of passivation prior to serialization of a session, and of activation after
deserialization of a session.
Application Developers writing distributed applications should be aware that
since the container may run in more than one Java virtual machine, the developer
cannot depend on static variables for storing an application state. They should
store such states using an enterprise bean or a database.
Final Version
C H A P T E R SRV.8
Dispatching Requests
• getRequestDispatcher
• getNamedDispatcher
63
64 DISPATCHING REQUESTS
The behavior of this method is similar to the method of the same name in the
ServletContext. The servlet container uses information in the request object to
transform the given relative path against the current servlet to a complete path. For
example, in a context rooted at ’/’ and a request to /garden/tools.html, a request
dispatcher obtained via ServletRequest.getRequestDispatcher("header.html")
will behave exactly like a call to
ServletContext.getRequestDispatcher("/garden/header.html").
To use a request dispatcher, a servlet calls either the include method or forward
method of the RequestDispatcher interface. The parameters to these methods can
be either the request and response arguments that were passed in via the service
method of the javax.servlet interface, or instances of subclasses of the request
and response wrapper classes that were introduced for version 2.3 of the
specification. In the latter case, the wrapper instances must wrap the request or
response objects that the container passed into the service method.
The Container Provider should ensure that the dispatch of the request to a
target servlet occurs in the same thread of the same JVM as the original request.
Final Version
The Include Method 65
The include method of the RequestDispatcher interface may be called at any time.
The target servlet of the include method has access to all aspects of the request
object, but its use of the response object is more limited.
It can only write information to the ServletOutputStream or Writer of the
response object and commit a response by writing content past the end of the
response buffer, or by explicitly calling the flushBuffer method of the
ServletResponse interface. It cannot set headers or call any method that affects
the headers of the response. Any attempt to do so must be ignored.
javax.servlet.include.request_uri
javax.servlet.include.context_path
javax.servlet.include.servlet_path
javax.servlet.include.path_info
javax.servlet.include.query_string
These attributes are accessible from the included servlet via the getAttribute
method on the request object and their values must be equal to the request URI,
context path, servlet path, path info, and query string of the included servlet,
respectively. If the request is subsequently included, these attributes are replaced
for that include.
If the included servlet was obtained by using the getNamedDispatcher
method, these attributes must not be set.
The path elements of the request object exposed to the target servlet must
reflect the path used to obtain the RequestDispatcher.
The only exception to this is if the RequestDispatcher was obtained via the
getNamedDispatcher method. In this case, the path elements of the request object
must reflect those of the original request.
Before the forward method of the RequestDispatcher interface returns, the
response content must be sent and committed, and closed by the servlet container.
javax.servlet.forward.request_uri
javax.servlet.forward.context_path
javax.servlet.forward.servlet_path
javax.servlet.forward.path_info
javax.servlet.forward.query_string
The values of these attributes must be equal to the return values of the
HttpServletRequest methods getRequestURI, getContextPath, getServletPath,
getPathInfo, getQueryString respectively, invoked on the request object passed
to the first servlet object in the call chain that received the request from the client.
These attributes are accessible from the forwarded servlet via the
getAttribute method on the request object. Note that these attributes must
always reflect the information in the original request even under the situation that
multiple forwards and subsequent includes are called.
If the forwarded servlet was obtained by using the getNamedDispatcher
method, these attributes must not be set.
Final Version
Error Handling 67
If the servlet that is the target of a request dispatcher throws a runtime exception or a
checked exception of type ServletException or IOException, it should be
propagated to the calling servlet. All other exceptions should be wrapped as
ServletExceptions and the root cause of the exception set to the original exception,
as it should not be propagated.
C H A P T E R SRV.9
Web Applications
A Web application is rooted at a specific path within a Web server. For example, a
catalog application could be located at http://www.mycorp.com/catalog. All
requests that start with this prefix will be routed to the ServletContext which
represents the catalog application.
A servlet container can establish rules for automatic generation of Web
applications. For example a ~user/ mapping could be used to map to a Web
application based at /home/user/public_html/.
By default, an instance of a Web application must run on one VM at any one
time. This behavior can be overridden if the application is marked as
“distributable” via its deployment descriptor. An application marked as
distributable must obey a more restrictive set of rules than is required of a normal
Web application. These rules are set out throughout this specification.
The servlet container must enforce a one to one correspondence between a Web
application and a ServletContext. A ServletContext object provides a servlet
with its view of the application.
68
Elements of a Web Application 69
• Servlets
• JSPTM Pages1
• Utility Classes
• Static documents (HTML, images, sounds, etc.)
• Client side Java applets, beans, and classes
• Descriptive meta information that ties all of the above elements together
1.
See the JavaServer Pages specification available from http://
java.sun.com/products/jsp.
70 WEB APPLICATIONS
The Web application class loader must load classes from the WEB-INF/ classes
directory first, and then from library JARs in the WEB-INF/lib directory. Also, any
requests from the client to access the resources in WEB-INF/ directory must be
returned with a SC_NOT_FOUND(404) response.
/index.html
/howto.jsp
/feedback.jsp
/images/banner.gif
/images/jumping.gif
/WEB-INF/web.xml
/WEB-INF/lib/jspbean.jar
Final Version
Web Application Archive File 71
/WEB-INF/classes/com/mycorp/servlets/MyServlet.class
/WEB-INF/classes/com/mycorp/util/MyUtils.class
Web applications can be packaged and signed into a Web ARchive format (WAR)
file using the standard Java archive tools. For example, an application for issue
tracking might be distributed in an archive file called issuetrack.war.
When packaged into such a form, a META-INF directory will be present which
contains information useful to Java archive tools. This directory must not be
directly served as content by the container in response to a Web client’s request,
though its contents are visible to servlet code via the getResource and getResour-
ceAsStream calls on the ServletContext. Also, any requests to access the
resources in META-INF directory must be returned with a SC_NOT_FOUND(404)
response.
When a number of applications make use of the same code or resources, they will
typically be installed as library files in the container. These files are often common
or standard APIs that can be used without sacrificing portability. Files used only by
one or a few applications will be made available for access as part of the Web
72 WEB APPLICATIONS
application. The container must provide a directory for these libraries. The files
placed within this directory must be available across all Web applications. The
location of this directory is container-specific. The class loader the servlet container
uses for loading these library files must be the same for all Web applications within
the same JVM. This class loader instance must be somewhere in the chain of parent
class loaders of the Web application class loader.
Application developers need to know what extensions are installed on a Web
container, and containers need to know what dependencies servlets in a WAR have
on such libraries in order to preserve portability.
J2EE technology-compliant containers are required to provide a mechanism
by which a deployer can learn what JAR files containing resources and code are
available for the Web application. Providing such the mechanism is
recommended, but not required for the containers that are not part of J2EE
technology-compliant implementation. The containers should provide a
convenient procedure for editing and configuring library files or extensions.
The application developer depending on such an extension or extensions must
provide a META-INF/MANIFEST.MF entry in the WAR file listing all extensions
needed by the WAR. The format of the manifest entry should follow standard JAR
manifest format. During deployment of the Web application, the Web container
must make the correct versions of the extensions available to the application
following the rules defined by the Optional Package Versioning mechanism (http:/
/java.sun.com/j2se/1.4/docs/guide/extensions/).
Web containers must also be able to recognize declared dependencies
expressed in the manifest entry of any of the library JARs under the WEB-INF/lib
entry in a WAR.
If a Web container is not able to satisfy the dependencies declared in this
manner, it should reject the application with an informative error message.
The class loader that a container uses to load a servlet in a WAR must allow the
developer to load any resources contained in library JARs within the WAR
following normal J2SE semantics using getResource. As described in the J2EE
license agreement, servlet containers that are not part of a J2EE product should not
allow the application to override J2SE platform classes, such as those in the java.*
and javax.* namespaces, that J2SE does not allow to be modified. Also, servlet
containers that are part of a J2EE product should not allow the application to
override J2SE or J2EE platform classes, such as those in java.* and javax.*
namespaces, that either J2SE or J2EE do not allow to be modified. The container
should not allow applications to override or access the container’s implementation
Final Version
Replacing a Web Application 73
A Web application must be able to specify that when errors occur. other resources in
the application are used to provide the content body of the error response. The
specification of these resources is done in the deployment descriptor.
If the location of the error handler is a servlet or a JSP page:
• The original unwrapped request and response objects created by the container
are passed to the servlet or JSP page.
• The response setStatus method is disabled and ignored if called.
• The request path and attributes are set as if a RequestDispatcher.forward to
the error resource had been performed.
• The request attributes in Table SRV.9-1 must be set.
javax.servlet.error.status_code java.lang.Integer
javax.servlet.error.exception_type java.lang.Class
javax.servlet.error.message java.lang.String
javax.servlet.error.exception java.lang.Throwable
javax.servlet.error.request_uri java.lang.String
javax.servlet.error.servlet_name java.lang.String
74 WEB APPLICATIONS
The Web application may have declared error pages using the exception-
type element. In this case the container matches the exception type by comparing
the exception thrown with the list of error-page definitions that use the
exception-type element. A match results in the container returning the resource
indicated in the location entry. The closest match in the class heirarchy wins.
If no error-page declaration containing an exception-type fits using the
class-heirarchy match, and the exception thrown is a ServletException or
subclass thereof, the container extracts the wrapped exception, as defined by the
ServletException.getRootCause method. A second pass is made over the error
Final Version
Welcome Files 75
page declarations, again attempting the match against the error page declarations,
but using the wrapped exception instead.
Error-page declarations using the exception-type element in the deployment
descriptor must be unique up to the class name of the exception-type. Similarly,
error-page declarations using the status-code element must be unique in the
deployment descriptor up to the status code.
The error page mechanism described does not intervene when errors occur
when invoked using the RequestDispatcher or filter.doFilter method. In this
way, a filter or servlet using the RequestDispatcher has the opportunity to handle
errors generated.
If a servlet generates an error that is not handled by the error page mechanism
as described above, the container must ensure to send a response with status 500.
The default servlet and container will use the sendError method to send 4xx
and 5xx status responses, so that the error mechanism may be invoked. The
default servlet and container will use the setStatus method for 2xx and 3xx
responses and will not invoke the error page mechanism.
Web Application developers can define an ordered list of partial URIs called
welcome files in the Web application deployment descriptor. The deployment
descriptor syntax for the list is described in the Web application deployment
descriptor schema.
The purpose of this mechanism is to allow the deployer to specify an ordered
list of partial URIs for the container to use for appending to URIs when there is a
request for a URI that corresponds to a directory entry in the WAR not mapped to
a Web component. This kind of request is known as a valid partial request.
The use for this facility is made clear by the following common example: A
welcome file of ‘index.html’ can be defined so that a request to a URL like
host:port/webapp/directory/, where ‘directory’ is an entry in the WAR that is
not mapped to a servlet or JSP page, is returned to the client as ‘host:port/
webapp/directory/index.html’.
76 WEB APPLICATIONS
If a Web container receives a valid partial request, the Web container must
examine the welcome file list defined in the deployment descriptor. The welcome
file list is an ordered list of partial URLs with no trailing or leading /. The Web
server must append each welcome file in the order specified in the deployment
descriptor to the partial request and check whether a static resource or servlet in
the WAR is mapped to that request URI. The Web container must send the request
to the first resource in the WAR that matches. The container may send the request
to the welcome resource with a forward, a redirect, or a container specific
mechanism that is indistinguishable from a direct request.
If no matching welcome file is found in the manner described, the container
may handle the request in a manner it finds suitable. For some configurations this
may mean returning a directory listing or for others returning a 404 response.
Consider a Web application where:
/foo/index.html
/foo/default.jsp
/foo/orderform.html
/foo/home.gif
/catalog/default.jsp
/catalog/products/shop.jsp
/catalog/products/register.jsp
Final Version
Web Application Environment 77
The JavaTM 2 Platform, Enterprise Edition defines a naming environment that allows
applications to easily access resources and external information without explicit
knowledge of how the external information is named or organized.
As servlets are an integral component type of J2EE technology, provision has
been made in the Web application deployment descriptor for specifying
information allowing a servlet to obtain references to resources and enterprise
beans. The deployment elements that contain this information are:
• env-entry
• ejb-ref
• ejb-local-ref
• resource-ref
• resource-env-ref
The developer uses these elements to describe certain objects that the Web
application requires to be registered in the JNDI namespace in the Web container
at runtime.
The requirements of the J2EE environment with regard to setting up the
environment are described in Chapter J2EE.5 of the JavaTM 2 Platform, Enterprise
Edition version 1.4 specification1. Servlet containers that are not part of a J2EE
technology-compliant implementation are encouraged, but not required, to
implement the application environment functionality described in the J2EE
specification. If they do not implement the facilities required to support this
environment, upon deploying an application that relies on them, the container
should provide a warning.
Servlet containers that are part of a J2EE technology-compliant
implementation are required to support this syntax. Consult the JavaTM 2 Platform,
Enterprise Edition version 1.4 specification for more details. This type of servlet
container must support lookups of such objects and calls made to those objects
when performed on a thread managed by the servlet container. This type of servlet
1.
The J2EE specification is available at http://java.sun.com/j2ee
78 WEB APPLICATIONS
container should support this behavior when performed on threads created by the
developer, but are not currently required to do so. Such a requirement will be
added in the next version of this specification. Developers are cautioned that
depending on this capability for application-created threads is not recommended,
as it is non-portable.
When a web application is deployed into a container, the following steps must be
performed, in this order, before the web application begins processing client
requests.
Final Version
C H A P T E R SRV.10
Application Lifecycle Events
SRV.10.1 Introduction
The application events facility gives the Web Application Developer greater control
over the lifecycle of the ServletContext and HttpSession and ServletRequest,
allows for better code factorization, and increases efficiency in managing the
resources that the Web application uses.
Application event listeners are classes that implement one or more of the servlet
event listener interfaces. They are instantiated and registered in the Web container at
the time of the deployment of the Web application. They are provided by the
Developer in the WAR.
Servlet event listeners support event notifications for state changes in the
ServletContext, HttpSession and ServletRequest objects. Servlet context
listeners are used to manage resources or state held at a JVM level for the
application. HTTP session listeners are used to manage state or resources
associated with a series of requests made into a Web application from the same
client or user. Servlet request listeners are used to manage state across the
lifecycle of servlet requests.
There may be multiple listener classes listening to each event type, and the
Developer may specify the order in which the container invokes the listener beans
for each event type.
79
80 APPLICATION LIFECYCLE EVENTS
Events types and the listener interfaces used to monitor them are shown in Table
SRV.10-1:.
Servlet Context
Events
HTTP Session
Events
Servlet Request
Events
Final Version
Listener Class Configuration 81
For details of the API, refer to the API reference in Chapter SRV.14,
“javax.servlet” and Chapter SRV.15, “javax.servlet.http”.
1. When the application starts up, the listener class is notified. The application
logs on to the database, and stores the connection in the servlet context.
2. Servlets in the application access the connection as needed during activity in
the Web application.
3. When the Web server is shut down, or the application is removed from the
Web server, the listener class is notified and the database connection is closed.
The Developer of the Web application provides listener classes implementing one or
more of the listener classes in the javax.servlet API. Each listener class must have
a public constructor taking no arguments. The listener classes are packaged into the
WAR, either under the WEB-INF/classes archive entry, or inside a JAR in the WEB-
INF/lib directory.
82 APPLICATION LIFECYCLE EVENTS
Listener classes are declared in the Web application deployment descriptor using the
listener element. They are listed by class name in the order in which they are to be
invoked.
The Web container creates an instance of each listener class and registers it for event
notifications prior to the processing of the first request by the application. The Web
container registers the listener instances according to the interfaces they implement
and the order in which they appear in the deployment descriptor. During Web
application execution, listeners are invoked in the order of their registration.
The following example is the deployment grammar for registering two servlet
context lifecycle listeners and an HttpSession listener.
Suppose that com.acme.MyConnectionManager and com.acme.
MyLoggingModule both implement javax.servlet.ServletContextListener, and
that com.acme.MyLoggingModule additionally implements
javax.servlet.HttpSessionListener. Also, the Developer wants
com.acme.MyConnectionManager to be notified of servlet context lifecycle events
before com.acme.MyLoggingModule. Here is the deployment descriptor for this
application:
Final Version
Listener Instances and Threading 83
<web-app>
<display-name>MyListeningApplication</display-name>
<listener>
<listener-class>com.acme.MyConnectionManager</listener-
class>
</listener>
<listener>
<listener-class>com.acme.MyLoggingModule</listener-class>
</listener>
<servlet>
<display-name>RegistrationServlet</display-name>
...etc
</servlet>
</web-app>
Application code inside a listener may throw an exception during operation. Some
listener notifications occur under the call tree of another component in the
application. An example of this is a servlet that sets a session attribute, where the
session listener throws an unhandled exception. The container must allow
unhandled exceptions to be handled by the error page mechanism described in
Section SRV.9.9, “Error Handling”. If there is no error page specified for those
exceptions, the container must ensure to send a response back with status 500. In
this case no more listeners under that event are called.
Some exceptions do not occur under the call stack of another component in
the application. An example of this is a SessionListener that receives a
notification that a session has timed out and throws an unhandled exception, or of
a ServletContextListener that throws an unhandled exception during a
84 APPLICATION LIFECYCLE EVENTS
Listener classes provide the Developer with a way of tracking sessions within a Web
application. It is often useful in tracking sessions to know whether a session became
invalid because the container timed out the session, or because a Web component
within the application called the invalidate method. The distinction may be
determined indirectly using listeners and the HttpSession API methods.
Final Version
C H A P T E R SRV.11
Mapping Requests to Servlets
The mapping techniques described in this chapter are required for Web containers
mapping client requests to servlets.1
Upon receipt of a client request, the Web container determines the Web application
to which to forward it. The Web application selected must have the the longest
context path that matches the start of the request URL. The matched part of the URL
is the context path when mapping to servlets.
The Web container next must locate the servlet to process the request using
the path mapping procedure described below.
The path used for mapping to a servlet is the request URL from the request
object minus the context path and the path parameters. The URL path mapping
rules below are used in order. The first successful match is used with no further
matches attempted:
1. The container will try to find an exact match of the path of the request to the
path of the servlet. A successful match selects the servlet.
2. The container will recursively try to match the longest path-prefix. This is done
by stepping down the path tree a directory at a time, using the ’/’ character as
a path separator. The longest match determines the servlet selected.
1.
Previous versions of this specification made use of these mapping tech-
niques as a suggestion rather than a requirement, allowing servlet con-
tainers to each have their different schemes for mapping client requests
to servlets.
85
86 MAPPING REQUESTS TO SERVLETS
3. If the last segment in the URL path contains an extension (e.g. .jsp), the serv-
let container will try to match a servlet that handles requests for the extension.
An extension is defined as the part of the last segment after the last ’.’ char-
acter.
4. If neither of the previous three rules result in a servlet match, the container will
attempt to serve content appropriate for the resource requested. If a "default"
servlet is defined for the application, it will be used.
In the Web application deployment descriptor, the following syntax is used to define
mappings:
• A string beginning with a ‘/’ character and ending with a ‘/*’ suffix is used
for path mapping.
• A string beginning with a ‘*.’ prefix is used as an extension mapping.
• A string containing only the ’/’ character indicates the "default" servlet of
the application. In this case the servlet path is the request URI minus the con-
text path and the path info is null.
• All other strings are used for exact matches only.
Final Version
Specification of Mappings 87
/foo/bar/* servlet1
/baz/* servlet2
/catalog servlet3
*.bop servlet4
/foo/bar/index.html servlet1
/foo/bar/index.bop servlet1
/baz servlet2
/baz/index.html servlet2
/catalog servlet3
/index.bop servlet4
Final Version
C H A P T E R SRV.12
Security
Web applications are created by Application Developers who give, sell, or otherwise
transfer the application to a Deployer for installation into a runtime environment.
Application Developers need to communicate to Deployers how the security is to be
set up for the deployed application. This is accomplished declaratively by use of the
deployment descriptors mechanism.
This chapter describes deployment representations for security requirements.
Similarly to web application directory layouts and deployment descriptors, this
section does not describe requirements for runtime representations. It is
recommended, however, that containers implement the elements set out here as
part of their runtime representations.
SRV.12.1 Introduction
A web application contains resources that can be accessed by many users. These
resources often traverse unprotected, open networks such as the Internet. In such an
environment, a substantial number of web applications will have security
requirements.
Although the quality assurances and implementation details may vary, servlet
containers have mechanisms and infrastructure for meeting these requirements
that share some of the following characteristics:
89
90 SECURITY
Final Version
Programmatic Security 91
• getRemoteUser
• isUserInRole
• getUserPrincipal
The getRemoteUser method returns the user name the client used for
authentication. The isUserInRole method determines if a remote user is in a
specified security role. The getUserPrincipal method determines the principal
name of the current user and returns a java.security.Principal object. These
APIs allow servlets to make business logic decisions based on the information
obtained.
If no user has been authenticated, the getRemoteUser method returns null, the
isUserInRole method always returns false, and the getUserPrincipal method
returns null.
The isUserInRole method expects a String user role-name parameter. A
security-role-ref element should be declared in the deployment descriptor
with a role-name sub-element containing the rolename to be passed to the
method. A security-role element should contain a role-link sub-element
whose value is the name of the security role that the user may be mapped into. The
container uses the mapping of security-role-ref to security-role when
determining the return value of the call.
For example, to map the security role reference "FOO" to the security role
with role-name "manager" the syntax would be:
<security-role-ref>
<role-name>FOO</role-name>
<role-link>manager</role-link>
</security-role-ref>
In this case if the servlet called by a user belonging to the "manager" security
role made the API call isUserInRole("FOO") the result would be true.
If no security-role-ref element matching a security-role element has
been declared, the container must default to checking the role-name element
argument against the list of security-role elements for the web application. The
isUserInRole method references the list to determine whether the caller is
mapped to a security role. The developer must be aware that the use of this default
mechanism may limit the flexibility in changing rolenames in the application
without having to recompile the servlet making the call.
92 SECURITY
SRV.12.4 Roles
1. A deployer has mapped a security role to a user group in the operational envi-
ronment. The user group to which the calling principal belongs is retrieved
from its security attributes. The principal is in the security role only if the prin-
cipal’s user group matches the user group to which the security role has been
mapped by the deployer.
2. A deployer has mapped a security role to a principal name in a security policy
domain. In this case, the principal name of the calling principal is retrieved
from its security attributes. The principal is in the security role only if the prin-
cipal name is the same as a principal name to which the security role was
mapped.
SRV.12.5 Authentication
A web client can authenticate a user to a web server using one of the following
mechanisms:
Final Version
Authentication 93
domain (confusingly also referred to as a realm). The web client obtains the
username and the password from the user and transmits them to the web server. The
web server then authenticates the user in the specified realm.
Basic Authentication is not a secure authentication protocol. User passwords
are sent in simple base64 encoding, and the target server is not authenticated.
Additional protection can alleviate some of these concerns: a secure transport
mechanism (HTTPS), or security at the network level (such as the IPSEC protocol
or VPN strategies) is applied in some deployment scenarios.
The look and feel of the “login screen” cannot be varied using the web browser’s
built-in authentication mechanisms. This specification introduces a required form
based authentication mechanism which allows a Developer to control the look and
feel of the login screens.
The web application deployment descriptor contains entries for a login form
and error page. The login form must contain fields for entering a username and a
password. These fields must be named j_username and j_password, respectively.
When a user attempts to access a protected web resource, the container checks
the user’s authentication. If the user is authenticated and possesses authority to
access the resource, the requested web resource is activated and a reference to it is
returned. If the user is not authenticated, all of the following steps occur:
1. The login form associated with the security constraint is sent to the client and
the URL path triggering the authentication is stored by the container.
2. The user is asked to fill out the form, including the username and password
fields.
3. The client posts the form back to the server.
4. The container attempts to authenticate the user using the information from the
94 SECURITY
form.
5. If authentication fails, the error page is returned using either a forward or a re-
direct, and the status code of the response is set to 200.
6. If authentication succeeds, the authenticated user’s principal is checked to see
if it is in an authorized role for accessing the resource.
7. If the user is authorized, the client is redirected to the resource using the stored
URL path.
The error page sent to a user that is not authenticated contains information
about the failure.
Form Based Authentication has the same lack of security as Basic
Authentication since the user password is transmitted as plain text and the target
server is not authenticated. Again additional protection can alleviate some of these
concerns: a secure transport mechanism (HTTPS), or security at the network level
(such as the IPSEC protocol or VPN strategies) is applied in some deployment
scenarios.
If the form based login is invoked because of an HTTP request, the original
request parameters must be preserved by the container for use if, on successful
authentication, it redirects the call to the requested resource.
If the user is authenticated using form login and has created an HTTP session,
the timeout or invalidation of that session leads to the user being logged out in the
Final Version
Server Tracking of Authentication Information 95
sense that subsequent requests must cause the user to be re-authenticated. The
scope of the logout is that same as that of the authentication: for example, if the
container supports single signon, such as J2EE technology compliant web
containers, the user would need to reauthenticate with any of the web applications
hosted on the web container.
End user authentication using HTTPS (HTTP over SSL) is a strong authentication
mechanism. This mechanism requires the user to possess a Public Key Certificate
(PKC). Currently, PKCs are useful in e-commerce applications and also for a single-
signon from within the browser. Servlet containers that are not J2EE technology
compliant are not required to support the HTTPS protocol.
As the underlying security identities (such as users and groups) to which roles are
mapped in a runtime environment are environment specific rather than application
specific, it is desirable to:
1. Make login mechanisms and policies a property of the environment the web
application is deployed in.
2. Be able to use the same authentication information to represent a principal to
all applications deployed in the same container, and
3. Require re-authentication of users only when a security policy domain bound-
ary has been crossed.
In other scenarios, web containers are required to allow web users that are not
known to the web container or to the EJBTM container to make calls:
• Web containers are required to support access to web resources by clients that
have not authenticated themselves to the container. This is the common mode
of access to web resources on the Internet.
• Application code may be the sole processor of signon and customization of
data based on caller identity.
Security constraints are a declarative way of defining the protection of web content.
A security constraint associates authorization and or user data constraints with
HTTP operations on web resources. A security constraint, which is represented by
security-constraint in deployment descriptor, consists of the following elements:
Final Version
Specifying Security Constraints 97
SRV.12.8.2 Example
<security-constraint>
<web-resource-collection>
<web-resource-name>restricted methods</web-resource-name>
<url-pattern>/*</url-pattern>
<url-pattern>/acme/wholesale/*</url-pattern>
<url-pattern>/acme/retail/*</url-pattern>
<http-method>DELETE</http-method>
<http-method>PUT</http-method>
</web-resource-collection>
<auth-constraint/>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>wholesale</web-resource-name>
<url-pattern>/acme/wholesale/*</url-pattern>
<http-method>GET</http-method>
<http-method>PUT</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>SALESCLERK</role-name>
Final Version
Specifying Security Constraints 99
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>wholesale</web-resource-name>
<url-pattern>/acme/wholesale/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>CONTRACTOR</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>retail</web-resource-name>
<url-pattern>/acme/retail/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>CONTRACTOR</role-name>
<role-name>HOMEOWNER</role-name>
</auth-constraint>
</security-constraint>
http-
url-pattern permitted roles supported connection types
method
When a Servlet container receives a request, it shall use the algorithm described in
SRV.11.1 to select the constraints (if any) defined on the url-pattern that is the
best match to the request URI. If no constraints are selected, the container shall
accept the request. Otherwise the container shall determine if the HTTP method of
the request is constrained at the selected pattern. If it is not, the request shall be
accepted. Otherwise, the request must satisfy the constraints that apply to the http-
method at the url-pattern. Both of the following rules must be satisfied for the
request to be accepted and dispatched to the associated servlet.
1. The characteristics of the connection on which the request was received must
satisfy at least one of the supported connection types defined by the con-
straints. If this rule is not satisfied, the container shall reject the request and re-
direct it to the HTTPS port.1
Final Version
Default Policies 101
1.
As an optimization, a container should reject the request as forbid-
den and return a 403 (SC_FORBIDDEN) status code if it knows that access
will ultimately be precluded (by an authorization constraint naming
no roles).
102 SECURITY
Final Version
C H A P T E R SRV.13
Deployment Descriptor
This chapter specifies the JavaTM Servlet Specification version 2.4 requirements for
Web container support of deployment descriptors. The deployment descriptor
conveys the elements and configuration information of a Web application between
Application Developers, Application Assemblers, and Deployers.
For Java Servlets v.2.4, the deployment descriptor is defined in terms of an
XML schema document.
For backwards compatibility of applications written to the 2.2 version of the
API, Web containers are also required to support the 2.2 version of the
deployment descriptor. For backwards compatibility of applications written to the
2.3 version of the API, Web containers are also required to support the 2.3 version
of the deployment descriptor. The 2.2 and 2.3 versions are defined in the
appendices.
103
104
• jsp-config
• Syntax for looking up JNDI objects (env-entry, ejb-ref, ejb-local-ref, re-
source-ref, resource-env-ref)
The syntax for these elements is now held in the JavaServer Pages
specification version 2.0, and the J2EE specification version 1.4.
container. It is packaged into the WAR file. The Web service developer makes a
declaration of this component using the usual <servlet> declaration.
The JAX-RPC-enabled Web container must support the developer in using the
Web deployment descriptor to define the following information for the endpont
implementation component, using the same syntax as for HTTP Servlet
components:
• a logical name which may be used to locate this endpoint description among
the other Web components in the WAR
• the fully qualified Java class name of this endpoint implementation
• descriptions of the component which may be displayed in a tool
• the order in which the component is initialized relative to other Web compo-
nents in the Web container
• security-role-references that it may use to test whether the authenticated
user is in a logical security role
• whether or not to override the identity propagated to EJBs called by this com-
ponent
Any servlet initialization parameters defined by the developer for this Web
component may be ignored by the container. Additionally, the JAX-RPC enabled
Web component inherits the traditional Web component mechanisms for defining
information:
• mapping of the component to the Web container’s URL namespace using the
servlet mapping technique
• authorization constraints on Web components using security constraints
• the ability to use servlet filters to provide low-level byte stream support for
manipulating JAX-RPC messages using the filter mapping technique
• the timeout characteristics of any HTTP sessions that are associated with the
component
• links to J2EE objects stored in the JNDI namespace
106
This section lists some general rules that Web containers and developers must note
concerning the processing of the deployment descriptor for a Web application.
• Web containers must remove all leading and trailing whitespace, which is de-
fined as “S(white space)” in XML 1.0 (http://www.w3.org/TR/2000/WD-xml-
2e-20000814), for the element content of the text nodes of a deployment de-
scriptor.
• The deployment descriptor must be valid against the schema. Web containers
and tools that manipulate Web applications have a wide range of options for
checking the validity of a WAR. This includes checking the validity of the de-
ployment descriptor document held within. The containers and tools that are
part of J2EE technology-compliant implementation are required to validate
deployment descriptor against the XML schema for structural correctness.
The validation is recommended, but not required for the web containers and
tools that are not part of J2EE technology-compliant implementation.
Additionally, it is recommended that Web containers and tools that manipu-
late Web applications provide a level of semantic checking. For example, it
should be checked that a role referenced in a security constraint has the same
name as one of the security roles defined in the deployment descriptor.
In cases of non-conformant Web applications, tools and containers should
inform the developer with descriptive error messages. High-end application
server vendors are encouraged to supply this kind of validity checking in the
form of a tool separate from the container.
• The sub elements under web-app can be in an arbitrary order in this version of
the specification. Because of the restriction of XML Schema, The multiplicity
of the elements distributable, session-config, welcome-file-list, jsp-
config, login-config, and locale-encoding-mapping-list was changed
from “optional” to “0 or more”. The containers must inform the developer
with a descriptive error message when the deployment descriptor contains
more than one element of session-config, jsp-config, and login-config.
The container must concatenate the items in welcome-file-list and locale-
encoding-mapping-list when there are multiple occurrences. The multiple
occurrence of distributable must be treated exactly in the same way as the
single occurrence of distributable.
107
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:annotation>
<xsd:documentation>
This is the XML Schema for the Servlet 2.4 deployment descriptor.
The deployment descriptor must be named "WEB-INF/web.xml" in the
web application’s war file. All Servlet deployment descriptors
must indicate the web application schema by using the J2EE
namespace:
108
http://java.sun.com/xml/ns/j2ee
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="..."
version="2.4">
...
</web-app>
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd
</xsd:documentation>
</xsd:annotation>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:include schemaLocation="j2ee_1_4.xsd"/>
<xsd:include schemaLocation="jsp_2_0.xsd"/>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:unique name="web-app-servlet-name-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:servlet"/>
<xsd:field xpath="j2ee:servlet-name"/>
</xsd:unique>
<xsd:unique name="web-app-filter-name-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
110
<xsd:selector xpath="j2ee:filter"/>
<xsd:field xpath="j2ee:filter-name"/>
</xsd:unique>
<xsd:unique name="web-app-ejb-local-ref-name-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:ejb-local-ref"/>
<xsd:field xpath="j2ee:ejb-ref-name"/>
</xsd:unique>
<xsd:unique name="web-app-ejb-ref-name-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:ejb-ref"/>
<xsd:field xpath="j2ee:ejb-ref-name"/>
</xsd:unique>
<xsd:unique name="web-app-resource-env-ref-uniqueness">
<xsd:annotation>
<xsd:documentation>
111
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:resource-env-ref"/>
<xsd:field xpath="j2ee:resource-env-ref-name"/>
</xsd:unique>
<xsd:unique name="web-app-message-destination-ref-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:message-destination-ref"/>
<xsd:field xpath="j2ee:message-destination-ref-name"/>
</xsd:unique>
<xsd:unique name="web-app-res-ref-name-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:resource-ref"/>
<xsd:field xpath="j2ee:res-ref-name"/>
</xsd:unique>
112
<xsd:unique name="web-app-env-entry-name-uniqueness">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:env-entry"/>
<xsd:field xpath="j2ee:env-entry-name"/>
</xsd:unique>
<xsd:key name="web-app-role-name-key">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:security-role"/>
<xsd:field xpath="j2ee:role-name"/>
</xsd:key>
<xsd:keyref name="web-app-role-name-references"
refer="j2ee:web-app-role-name-key">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:selector xpath="j2ee:servlet/j2ee:security-role-ref"/>
<xsd:field xpath="j2ee:role-link"/>
</xsd:keyref>
113
</xsd:element>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="description"
type="j2ee:descriptionType"
minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="role-name"
type="j2ee:role-nameType"
minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string">
<xsd:enumeration value="FORWARD"/>
<xsd:enumeration value="INCLUDE"/>
<xsd:enumeration value="REQUEST"/>
<xsd:enumeration value="ERROR"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
115
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[^s]+"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:xsdPositiveIntegerType">
<xsd:pattern value="d{3}"/>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
application.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:choice>
<xsd:element name="error-code"
type="j2ee:error-codeType"/>
<xsd:element name="exception-type"
type="j2ee:fully-qualified-classType">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:element name="location"
type="j2ee:war-pathType">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
117
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="filter-name"
type="j2ee:filter-nameType"/>
<xsd:choice>
<xsd:element name="url-pattern"
type="j2ee:url-patternType"/>
<xsd:element name="servlet-name"
type="j2ee:servlet-nameType"/>
</xsd:choice>
<xsd:element name="dispatcher"
type="j2ee:dispatcherType"
minOccurs="0" maxOccurs="4"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="j2ee:nonEmptyStringType"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:group ref="j2ee:descriptionGroup"/>
<xsd:element name="filter-name"
type="j2ee:filter-nameType"/>
<xsd:element name="filter-class"
type="j2ee:fully-qualified-classType">
<xsd:annotation>
<xsd:documentation>
119
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="init-param"
type="j2ee:param-valueType"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="form-login-page"
type="j2ee:war-pathType">
<xsd:annotation>
<xsd:documentation>
120
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="form-error-page"
type="j2ee:war-pathType">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string">
<xsd:enumeration value="GET"/>
<xsd:enumeration value="POST"/>
121
<xsd:enumeration value="PUT"/>
<xsd:enumeration value="DELETE"/>
<xsd:enumeration value="HEAD"/>
<xsd:enumeration value="OPTIONS"/>
<xsd:enumeration value="TRACE"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="locale-encoding-mapping"
type="j2ee:locale-encoding-mappingType"
maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="locale"
122
type="j2ee:localeType"/>
<xsd:element name="encoding"
type="j2ee:encodingType"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[a-z]{2}(_|-)?([p{L}-p{Nd}]{2})?"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="auth-method"
type="j2ee:auth-methodType"
minOccurs="0"/>
<xsd:element name="realm-name"
123
type="j2ee:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="form-login-config"
type="j2ee:form-login-configType"
minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:element name="extension"
124
type="j2ee:string"/>
<xsd:element name="mime-type"
type="j2ee:mime-typeType"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
Example:
"text/plain"
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string">
<xsd:pattern value="[p{L}-p{Nd}]+/[p{L}-p{Nd}.]+"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string">
<xsd:minLength value="1"/>
125
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="display-name"
type="j2ee:display-nameType"
minOccurs="0"
maxOccurs="unbounded"/>
<xsd:element name="web-resource-collection"
type="j2ee:web-resource-collectionType"
maxOccurs="unbounded"/>
<xsd:element name="auth-constraint"
type="j2ee:auth-constraintType"
minOccurs="0"/>
<xsd:element name="user-data-constraint"
type="j2ee:user-data-constraintType"
minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="servlet-name"
type="j2ee:servlet-nameType"/>
<xsd:element name="url-pattern"
type="j2ee:url-patternType"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="j2ee:nonEmptyStringType"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:group ref="j2ee:descriptionGroup"/>
<xsd:element name="servlet-name"
type="j2ee:servlet-nameType"/>
<xsd:choice>
<xsd:element name="servlet-class"
type="j2ee:fully-qualified-classType">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="jsp-file"
type="j2ee:jsp-fileType"/>
</xsd:choice>
<xsd:element name="init-param"
type="j2ee:param-valueType"
minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="load-on-startup"
type="j2ee:xsdIntegerType"
minOccurs="0">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="run-as"
type="j2ee:run-asType"
minOccurs="0"/>
<xsd:element name="security-role-ref"
type="j2ee:security-role-refType"
minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="session-timeout"
type="j2ee:xsdIntegerType"
minOccurs="0">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string">
<xsd:enumeration value="NONE"/>
<xsd:enumeration value="INTEGRAL"/>
<xsd:enumeration value="CONFIDENTIAL"/>
130
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="description"
type="j2ee:descriptionType"
minOccurs="0"
maxOccurs="unbounded"/>
<xsd:element name="transport-guarantee"
type="j2ee:transport-guaranteeType"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="j2ee:string">
131
<xsd:pattern value="/.*"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="2.4"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="filter"
type="j2ee:filterType"/>
132
<xsd:element name="filter-mapping"
type="j2ee:filter-mappingType"/>
<xsd:element name="listener"
type="j2ee:listenerType"/>
<xsd:element name="servlet"
type="j2ee:servletType"/>
<xsd:element name="servlet-mapping"
type="j2ee:servlet-mappingType"/>
<xsd:element name="session-config"
type="j2ee:session-configType"/>
<xsd:element name="mime-mapping"
type="j2ee:mime-mappingType"/>
<xsd:element name="welcome-file-list"
type="j2ee:welcome-file-listType"/>
<xsd:element name="error-page"
type="j2ee:error-pageType"/>
<xsd:element name="jsp-config"
type="j2ee:jsp-configType"/>
<xsd:element name="security-constraint"
type="j2ee:security-constraintType"/>
<xsd:element name="login-config"
type="j2ee:login-configType"/>
<xsd:element name="security-role"
type="j2ee:security-roleType"/>
<xsd:group ref="j2ee:jndiEnvironmentRefsGroup"/>
<xsd:element name="message-destination"
type="j2ee:message-destinationType"/>
<xsd:element name="locale-encoding-mapping-list"
type="j2ee:locale-encoding-mapping-listType"/>
</xsd:choice>
<xsd:attribute name="version"
type="j2ee:web-app-versionType"
use="required"/>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="web-resource-name"
type="j2ee:string">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="description"
type="j2ee:descriptionType"
minOccurs="0"
maxOccurs="unbounded"/>
<xsd:element name="url-pattern"
type="j2ee:url-patternType"
maxOccurs="unbounded"/>
<xsd:element name="http-method"
type="j2ee:http-methodType"
minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="welcome-file"
type="xsd:string"
maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
</xsd:schema>
135
This section illustrates the elements in deployment descriptor. All diagrams follow
the convention displayed in Figure SRV.13.1. Attributes are not shown in the
diagrams. See Deployment Descroptor Schema for the detailed information.
Figure SRV.13.1 Convention of the Diagram of Deployment Descriptor Element
1. web-app Element
The web-app element is the root deployment descriptor for a Web application. This
element contains the following elements.This element has a required attribute ver-
sion to specify to which version of the schema the deployment descriptor
conforms. All sub elements under this element can be in an arbitrary order.
136
2. description Element
The description element is to provide a text describing the parent element. This
element occurs not only under the web-app element but also under other multiple
elements. It has an optional attribute xml:lang to indicate which language is used
in the description. The default value of this attribute is English (“en”).
137
3. display-name Element
The display-name contains a short name that is intended to be displayed by tools.
The display name need not to be unique. This element has an optional attribute
xml:lang to specify the language.
4. icon Element
The icon contains small-icon and large-icon elements that specify the file names
for small and large GIF or JPEG icon images used to represent the parent element in
a GUI tool.
Figure SRV.13.3 icon Element Structure
5. distributable Element
The distributable indicates that this Web application is programmed
appropriately to be deployed into a distributed servlet container.
6. context-param Element
The context-param contains the declaration of a Web application’s servlet
context initialization parameters.
7. filter Element
The filter declares a filter in the Web application. The filter is mapped to either a
servlet or a URL pattern in the filter-mapping element, using the filter-name
value to reference. Filters can access the initialization parameters declared in the
deployment descriptor at runtime via the FilterConfig interface. The filter-name
element is the logical name of the filter. It must be unique within the Web
application. The element content of filter-name element must not be empty. The
138
filter-class is the fully qualified class name of the filter. The init-param
element contains name-value pair as an initialization parameter of this filter.
Figure SRV.13.4 filter Element Structure
8. filter-mapping Element
The filter-mapping is used by the container to decide which filters to apply to a
request in what order. The value of the filter-name must be one of the filter
declarations in the deployment descriptor. The maching request can be specified
either url-pattern or servlet-name.
Figure SRV.13.5 filter-mapping Element Structure
139
9. listener Element
The listener indicates the deployment properties for an application listener bean.
The sub-element listener-class declares that a class in the application must be
registered as a Web application listener bean. The value is the fully qualified
classname of the listener class.
Figure SRV.13.6 listener Element Structure
for the constructor of the specified type that takes a single String as a parameter, or a
single character for java.lang.Character.
Figure SRV.13.17 env-entry Element Structure
access the init-param name-value pairs using the HandlerInfo interface. If port-
name is not specified, the handler is assumed to be associated with all ports of the
service. See JSR-109 Specification [http://www.jcp.org/en/jsr/
detail?id=921] for detail. The container that is not a part of a J2EE
implementation is not required to support this element.
Figure SRV.13.20 service-ref Element Structure
environment entry name used in deployment component code. The name is a JNDI
name relative to the java:comp/env context and must be unique within an ejb-jar for
enterprise beans or a deployment file for others. The message-destination-
type specifies the type of the destination. The type is specified by the Java interface
expected to be implemented by the destination. The message-destination-
usage specifies the use of the message destination indicated by the reference. The
value indicates whether messages are consumed from the message destination,
produced for the destination, or both. The Assembler makes use of this information
in linking producers of a destination with its consumers. The message-destina-
tion-link links a message destination reference or message-driven bean to a
message destination. The Assembler sets the value to reflect the flow of messages
between producers and consumers in the application. The value must be the mes-
sage-destination-name of a message destination in the same deployment file or
in another deployment file in the same J2EE application unit. Alternatively, the
value may be composed of a path name specifying a deployment file containing the
referenced message destination with the message-destination-name of the
destination appended and separated from the path name by "#". The path name is
relative to the deployment file containing deployment component that is referencing
the message destination. This allows multiple message destinations with the same
name to be uniquely identified.
Example:
<message-destination-ref>
<message-destination-ref-name>jms/StockQueue</message-
destination-ref-name>
<message-destination-type>javax.jms.Queue</message-
destination-type>
<message-destination-usage>Consumes</message-destination-
usage>
<message-destination-link>CorporateStocks</message-
destination-link>
</message-destination-ref>
151
Example:
<message-destination>
<message-destination-name>CorporateStocks</message-
destination-name>
</message-destination>
Example:
<locale-encoding-mapping-list>
<locale-encoding-mapping>
<locale>ja</locale>
<encoding>Shift_JIS</encoding>
</locale-encoding-mapping>
</locale-encoding-mapping-list>
SRV.13.5 Examples
The following examples illustrate the usage of the definitions listed in the
deployment descriptor schema.
153
</user-data-constraint>
</security-constraint>
</web-app>
C H A P T E R SRV.14
javax.servlet
This chapter describes the javax.servlet package. The chapter includes content that
is generated automatically from javadoc embedded in the actual Java classes and
interfaces. This allows the creation of a single, authoritative, specification docu-
ment.
The javax.servlet package contains a number of classes and interfaces that describe
and define the contracts between a servlet class and the runtime environment pro-
vided for an instance of such a class by a conforming servlet container.
The Servlet interface is the central abstraction of the servlet API. All servlets
implement this interface either directly, or more commonly, by extending a class
that implements the interface. The two classes in the servlet API that implement
the Servlet interface are GenericServlet and HttpServlet . For most purposes,
developers will extend HttpServlet to implement their servlets while
implementing web applications employing the HTTP protocol.
The basic Servlet interface defines a service method for handling client
requests. This method is called for each request that the servlet container routes to
an instance of a servlet.
156
157 JAVAX.SERVLET
Class Summary
Interfaces
Filter A filter is an object that performs filtering tasks
on either the request to a resource (a servlet or
static content), or on the response from a
resource, or both.
Final Version
The javax.servlet package 158
Class Summary
ServletRequestListener A ServletRequestListener can be implemented
by the developer interested in being notified of
requests coming in and out of scope in a web
component.
ServletResponse Defines an object to assist a servlet in sending a
response to the client.
SingleThreadModel Ensures that servlets handle only one request at a
time.
Classes
GenericServlet Defines a generic, protocol-independent servlet.
ServletContextAttribute This is the event class for notifications about
Event changes to the attributes of the servlet context
of a web application.
ServletContextEvent This is the event class for notifications about
changes to the servlet context of a web
application.
ServletInputStream Provides an input stream for reading binary
data from a client request, including an efficient
readLine method for reading data one line at a
time.
ServletOutputStream Provides an output stream for sending binary
data to the client.
ServletRequestAttribute This is the event class for notifications of
Event changes to the attributes of ServletRequest in
an application.
ServletRequestEvent Events of this kind indicate lifecycle events for
a ServletRequest.
ServletRequestWrapper Provides a convenient implementation of the
ServletRequest interface that can be subclassed
by developers wishing to adapt the request to a
Servlet.
ServletResponseWrapper Provides a convenient implementation of the
ServletResponse interface that can be subclassed
by developers wishing to adapt the response
from a Servlet.
Exceptions
159 JAVAX.SERVLET
Class Summary
ServletException Defines a general exception a servlet can throw
when it encounters difficulty.
UnavailableException Defines an exception that a servlet or filter
throws to indicate that it is permanently or tem-
porarily unavailable.
SRV.14.2.1 Filter
public interface Filter
A filter is an object that performs filtering tasks on either the request to a resource
(a servlet or static content), or on the response from a resource, or both.
Filters perform filtering in the doFilter method. Every Filter has access to a
FilterConfig object from which it can obtain its initialization parameters, a refer-
ence to the ServletContext which it can use, for example, to load resources
needed for filtering tasks.
SRV.14.2.1.1 Methods
destroy()
public void destroy()
Called by the web container to indicate to a filter that it is being taken out of
service. This method is only called once all threads within the filter’s doFilter
method have exited or after a timeout period has passed. After the web con-
tainer calls this method, it will not call the doFilter method again on this
Final Version
The javax.servlet package 160
This method gives the filter an opportunity to clean up any resources that are
being held (for example, memory, file handles, threads) and make sure that
any persistent state is synchronized with the filter’s current state in memory.
The doFilter method of the Filter is called by the container each time a
request/response pair is passed through the chain due to a client request for a
resource at the end of the chain. The FilterChain passed in to this method
allows the Filter to pass on the request and response to the next entity in the
chain.
A typical implementation of this method would follow the following pattern:-
1. Examine the request
2. Optionally wrap the request object with a custom implementation to filter
content or headers for input filtering
3. Optionally wrap the response object with a custom implementation to fil-
ter content or headers for output filtering
4. a) Either invoke the next entity in the chain using the FilterChain object
(chain.doFilter()),
4. b) or not pass on the request/response pair to the next entity in the filter
chain to block the request processing
5. Directly set headers on the response after invocation of the next entity in
the filter chain.
Throws:
ServletException, IOException
init(FilterConfig)
public void init(FilterConfig filterConfig)
throws ServletException
Called by the web container to indicate to a filter that it is being placed into
service. The servlet container calls the init method exactly once after instanti-
ating the filter. The init method must complete successfully before the filter is
asked to do any filtering work.
The web container cannot place the filter into service if the init method either
1.Throws a ServletException
2.Does not return within a time period defined by the web container
161 JAVAX.SERVLET
Throws:
ServletException
SRV.14.2.2 FilterChain
public interface FilterChain
SRV.14.2.2.1 Methods
doFilter(ServletRequest, ServletResponse)
public void doFilter(ServletRequest request,
ServletResponse response)
throws IOException, ServletException
Causes the next filter in the chain to be invoked, or if the calling filter is the
last filter in the chain, causes the resource at the end of the chain to be
invoked.
Parameters:
request - the request to pass along the chain.
Since: 2.3
SRV.14.2.3 FilterConfig
public interface FilterConfig
Final Version
The javax.servlet package 162
SRV.14.2.3.1 Methods
getFilterName()
public java.lang.String getFilterName()
getInitParameter(String)
public java.lang.String getInitParameter(java.lang.String name)
getInitParameterNames()
public java.util.Enumeration getInitParameterNames()
getServletContext()
public ServletContext getServletContext()
SRV.14.2.4 GenericServlet
public abstract class GenericServlet implements
javax.servlet.Servlet, javax.servlet.ServletConfig,
java.io.Serializable
All Implemented Interfaces: java.io.Serializable, Servlet, ServletCon-
fig
Direct Known Subclasses: javax.servlet.http.HttpServlet
163 JAVAX.SERVLET
To write a generic servlet, you need only override the abstract service method.
SRV.14.2.4.1 Constructors
GenericServlet()
public GenericServlet()
Does nothing. All of the servlet initialization is done by one of the init
methods.
SRV.14.2.4.2 Methods
destroy()
public void destroy()
Called by the servlet container to indicate to a servlet that the servlet is being
taken out of service. See Servlet.destroy() .
Specified By: Servlet.destroy() in interface Servlet
getInitParameter(String)
public java.lang.String getInitParameter(java.lang.String name)
This method is supplied for convenience. It gets the value of the named
parameter from the servlet’s ServletConfig object.
Specified By: ServletConfig.getInitParameter(String) in interface
ServletConfig
Parameters:
name - a String specifying the name of the initialization parameter
Final Version
The javax.servlet package 164
getInitParameterNames()
public java.util.Enumeration getInitParameterNames()
This method is supplied for convenience. It gets the parameter names from
the servlet’s ServletConfig object.
Specified By: ServletConfig.getInitParameterNames() in interface
ServletConfig
getServletConfig()
public ServletConfig getServletConfig()
getServletContext()
public ServletContext getServletContext()
getServletInfo()
public java.lang.String getServletInfo()
165 JAVAX.SERVLET
Returns information about the servlet, such as author, version, and copyright.
By default, this method returns an empty string. Override this method to have
it return a meaningful value. See Servlet.getServletInfo() .
Specified By: Servlet.getServletInfo() in interface Servlet
Returns: String information about this servlet, by default an empty string
getServletName()
public java.lang.String getServletName()
init()
public void init()
throws ServletException
init(ServletConfig)
public void init(ServletConfig config)
throws ServletException
Called by the servlet container to indicate to a servlet that the servlet is being
placed into service. See Servlet.init(ServletConfig) .
This implementation stores the ServletConfig object it receives from the
servlet container for later use. When overriding this form of the method, call
super.init(config).
Final Version
The javax.servlet package 166
Throws:
ServletException - if an exception occurs that interrupts the servlet’s
normal operation
See Also: UnavailableException
log(String)
public void log(java.lang.String msg)
Writes the specified message to a servlet log file, prepended by the servlet’s
name. See ServletContext.log(String) .
Parameters:
msg - a String specifying the message to be written to the log file
log(String, Throwable)
public void log(java.lang.String message, java.lang.Throwable t)
Parameters:
message - a String that describes the error or exception
service(ServletRequest, ServletResponse)
public abstract void service(ServletRequest req,
ServletResponse res)
throws ServletException, IOException
res - the ServletResponse object that will contain the servlet’s response
Throws:
ServletException - if an exception occurs that interferes with the servlet’s
normal operation occurred
IOException - if an input or output exception occurs
167 JAVAX.SERVLET
SRV.14.2.5 RequestDispatcher
public interface RequestDispatcher
Defines an object that receives requests from the client and sends them to any
resource (such as a servlet, HTML file, or JSP file) on the server. The servlet con-
tainer creates the RequestDispatcher object, which is used as a wrapper around a
server resource located at a particular path or given by a particular name.
This interface is intended to wrap servlets, but a servlet container can create
RequestDispatcher objects to wrap any type of resource.
SRV.14.2.5.1 Methods
forward(ServletRequest, ServletResponse)
public void forward(ServletRequest request,
ServletResponse response)
throws ServletException, IOException
Final Version
The javax.servlet package 168
Throws:
ServletException - if the target resource throws this exception
IOException - if the target resource throws this exception
IllegalStateException - if the response was already committed
include(ServletRequest, ServletResponse)
public void include(ServletRequest request,
ServletResponse response)
throws ServletException, IOException
Includes the content of a resource (servlet, JSP page, HTML file) in the
response. In essence, this method enables programmatic server-side includes.
The ServletResponse object has its path elements and parameters remain
unchanged from the caller’s. The included servlet cannot change the response
status code or set headers; any attempt to make a change is ignored.
The request and response parameters must be either the same objects as were
passed to the calling servlet’s service method or be subclasses of the
ServletRequestWrapper or ServletResponseWrapper classes that wrap
them.
Parameters:
request - a ServletRequest object that contains the client’s request
SRV.14.2.6 Servlet
public interface Servlet
All Known Implementing Classes: GenericServlet
Defines methods that all servlets must implement.
A servlet is a small Java program that runs within a Web server. Servlets receive
and respond to requests from Web clients, usually across HTTP, the HyperText
Transfer Protocol.
To implement this interface, you can write a generic servlet that extends
javax.servlet.GenericServlet or an HTTP servlet that extends
javax.servlet.http.HttpServlet.
169 JAVAX.SERVLET
SRV.14.2.6.1 Methods
destroy()
public void destroy()
Called by the servlet container to indicate to a servlet that the servlet is being
taken out of service. This method is only called once all threads within the
servlet’s service method have exited or after a timeout period has passed.
After the servlet container calls this method, it will not call the service
method again on this servlet.
This method gives the servlet an opportunity to clean up any resources that
are being held (for example, memory, file handles, threads) and make sure
that any persistent state is synchronized with the servlet’s current state in
memory.
getServletConfig()
public ServletConfig getServletConfig()
Final Version
The javax.servlet package 170
getServletInfo()
public java.lang.String getServletInfo()
Returns information about the servlet, such as author, version, and copyright.
The string that this method returns should be plain text and not markup of any
kind (such as HTML, XML, etc.).
Returns: a String containing servlet information
init(ServletConfig)
public void init(ServletConfig config)
throws ServletException
Called by the servlet container to indicate to a servlet that the servlet is being
placed into service.
The servlet container calls the init method exactly once after instantiating
the servlet. The init method must complete successfully before the servlet
can receive any requests.
The servlet container cannot place the servlet into service if the init method
1. Throws a ServletException
2. Does not return within a time period defined by the Web server
Parameters:
config - a ServletConfig object containing the servlet’s configuration and
initialization parameters
Throws:
ServletException - if an exception has occurred that interferes with the
servlet’s normal operation
See Also: UnavailableException, getServletConfig()
service(ServletRequest, ServletResponse)
public void service(ServletRequest req, ServletResponse res)
throws ServletException, IOException
SRV.14.2.7 ServletConfig
public interface ServletConfig
All Known Implementing Classes: GenericServlet
A servlet configuration object used by a servlet container to pass information to a
servlet during initialization.
SRV.14.2.7.1 Methods
getInitParameter(String)
public java.lang.String getInitParameter(java.lang.String name)
getInitParameterNames()
public java.util.Enumeration getInitParameterNames()
getServletContext()
Final Version
The javax.servlet package 172
getServletName()
public java.lang.String getServletName()
Returns the name of this servlet instance. The name may be provided via
server administration, assigned in the web application deployment descriptor,
or for an unregistered (and thus unnamed) servlet instance it will be the serv-
let’s class name.
Returns: the name of the servlet instance
SRV.14.2.8 ServletContext
public interface ServletContext
Defines a set of methods that a servlet uses to communicate with its servlet con-
tainer, for example, to get the MIME type of a file, dispatch requests, or write to a
log file.
There is one context per “web application” per Java Virtual Machine. (A “web
application” is a collection of servlets and content installed under a specific sub-
set of the server’s URL namespace such as /catalog and possibly installed via a
.war file.)
SRV.14.2.8.1 Methods
getAttribute(String)
public java.lang.Object getAttribute(java.lang.String name)
173 JAVAX.SERVLET
Returns the servlet container attribute with the given name, or null if there is
no attribute by that name. An attribute allows a servlet container to give the
servlet additional information not already provided by this interface. See
your server documentation for information about its attributes. A list of sup-
ported attributes can be retrieved using getAttributeNames.
The attribute is returned as a java.lang.Object or some subclass. Attribute
names should follow the same convention as package names. The Java Serv-
let API specification reserves names matching java.*, javax.*, and sun.*.
Parameters:
name - a String specifying the name of the attribute
getAttributeNames()
public java.util.Enumeration getAttributeNames()
getContext(String)
public ServletContext getContext(java.lang.String uripath)
Final Version
The javax.servlet package 174
getInitParameter(String)
public java.lang.String getInitParameter(java.lang.String name)
getInitParameterNames()
public java.util.Enumeration getInitParameterNames()
getMajorVersion()
public int getMajorVersion()
Returns the major version of the Java Servlet API that this servlet container
supports. All implementations that comply with Version 2.4 must have this
method return the integer 2.
Returns: 2
getMimeType(String)
public java.lang.String getMimeType(java.lang.String file)
Returns the MIME type of the specified file, or null if the MIME type is not
known. The MIME type is determined by the configuration of the servlet
container, and may be specified in a web application deployment descriptor.
Common MIME types are “text/html” and “image/gif”.
175 JAVAX.SERVLET
Parameters:
file - a String specifying the name of a file
getMinorVersion()
public int getMinorVersion()
Returns the minor version of the Servlet API that this servlet container sup-
ports. All implementations that comply with Version 2.4 must have this
method return the integer 4.
Returns: 4
getNamedDispatcher(String)
public RequestDispatcher getNamedDispatcher(java.lang.String name)
Parameters:
name - a String specifying the name of a servlet to wrap
getRealPath(String)
public java.lang.String getRealPath(java.lang.String path)
Returns a String containing the real path for a given virtual path. For exam-
ple, the path “/index.html” returns the absolute file path on the server’s file-
system would be served by a request for “http://host/contextPath/index.html”,
where contextPath is the context path of this ServletContext.
The real path returned will be in a form appropriate to the computer and oper-
ating system on which the servlet container is running, including the proper
path separators. This method returns null if the servlet container cannot
translate the virtual path to a real path for any reason (such as when the con-
tent is being made available from a .war archive).
Final Version
The javax.servlet package 176
Parameters:
path - a String specifying a virtual path
Returns: a String specifying the real path, or null if the translation cannot
be performed
getRequestDispatcher(String)
public RequestDispatcher getRequestDispatcher(java.lang.String
path)
Parameters:
path - a String specifying the pathname to the resource
getResource(String)
public java.net.URL getResource(java.lang.String path)
throws MalformedURLException
Returns a URL to the resource that is mapped to a specified path. The path
must begin with a “/” and is interpreted as relative to the current context root.
This method allows the servlet container to make a resource available to serv-
lets from any source. Resources can be located on a local or remote file sys-
tem, in a database, or in a .war file.
The servlet container must implement the URL handlers and URLConnection
objects that are necessary to access the resource.
This method returns null if no resource is mapped to the pathname.
Some containers may allow writing to the URL returned by this method using
the methods of the URL class.
177 JAVAX.SERVLET
getResourceAsStream(String)
public java.io.InputStream getResourceAsStream(java.lang.String
path)
Meta-information such as content length and content type that is available via
getResource method is lost when using this method.
The servlet container must implement the URL handlers and URLConnection
objects necessary to access the resource.
This method is different from java.lang.Class.getResourceAsStream,
which uses a class loader. This method allows servlet containers to make a
resource available to a servlet from any location, without using a class loader.
Parameters:
path - a String specifying the path to the resource
getResourcePaths(String)
public java.util.Set getResourcePaths(java.lang.String path)
Returns a directory-like listing of all the paths to resources within the web
application whose longest sub-path matches the supplied path argument.
Paths indicating subdirectory paths end with a ’/’. The returned paths are all
relative to the root of the web application and have a leading ’/’. For example,
Final Version
The javax.servlet package 178
/welcome.html
/catalog/index.html
/catalog/products.html
/catalog/offers/books.html
/catalog/offers/music.html
/customer/login.jsp
/WEB-INF/web.xml
/WEB-INF/classes/com.acme.OrderServlet.class,
Parameters:
path - the partial path used to match the resources, which must start with a /
getServerInfo()
public java.lang.String getServerInfo()
Returns the name and version of the servlet container on which the servlet is
running.
The form of the returned string is servername/versionnumber. For example,
the JavaServer Web Development Kit may return the string JavaServer Web
Dev Kit/1.0.
The servlet container may return other optional information after the primary
string in parentheses, for example, JavaServer Web Dev Kit/1.0 (JDK
1.1.6; Windows NT 4.0 x86).
Returns: a String containing at least the servlet container name and version
number
getServlet(String)
public Servlet getServlet(java.lang.String name)
throws ServletException
getServletContextName()
public java.lang.String getServletContextName()
getServletNames()
public java.util.Enumeration getServletNames()
getServlets()
public java.util.Enumeration getServlets()
log(Exception, String)
Final Version
The javax.servlet package 180
log(String)
public void log(java.lang.String msg)
Writes the specified message to a servlet log file, usually an event log. The
name and type of the servlet log file is specific to the servlet container.
Parameters:
msg - a String specifying the message to be written to the log file
log(String, Throwable)
public void log(java.lang.String message,
java.lang.Throwable throwable)
removeAttribute(String)
public void removeAttribute(java.lang.String name)
Removes the attribute with the given name from the servlet context. After
removal, subsequent calls to getAttribute(String) to retrieve the
attribute’s value will return null.
If listeners are configured on the ServletContext the container notifies them
accordingly.
Parameters:
name- a String specifying the name of the attribute to be removed
setAttribute(String, Object)
public void setAttribute(java.lang.String name,
java.lang.Object object)
181 JAVAX.SERVLET
Binds an object to a given attribute name in this servlet context. If the name
specified is already used for an attribute, this method will replace the attribute
with the new to the new attribute.
If listeners are configured on the ServletContext the container notifies them
accordingly.
If a null value is passed, the effect is the same as calling removeAttribute().
Attribute names should follow the same convention as package names. The
Java Servlet API specification reserves names matching java.*, javax.*,
and sun.*.
Parameters:
name - a String specifying the name of the attribute
SRV.14.2.9 ServletContextAttributeEvent
public class ServletContextAttributeEvent extends
javax.servlet.ServletContextEvent
All Implemented Interfaces: java.io.Serializable
This is the event class for notifications about changes to the attributes of the serv-
let context of a web application.
Since: v 2.3
See Also: ServletContextAttributeListener
SRV.14.2.9.1 Constructors
SRV.14.2.9.2 Methods
getName()
public java.lang.String getName()
getValue()
Final Version
The javax.servlet package 182
Returns the value of the attribute that has been added, removed, or replaced.
If the attribute was added, this is the value of the attribute. If the attribute was
removed, this is the value of the removed attribute. If the attribute was
replaced, this is the old value of the attribute.
SRV.14.2.10 ServletContextAttributeListener
public interface ServletContextAttributeListener extends
java.util.EventListener
All Superinterfaces: java.util.EventListener
Implementations of this interface receive notifications of changes to the attribute
list on the servlet context of a web application. To receive notification events, the
implementation class must be configured in the deployment descriptor for the
web application.
Since: v 2.3
See Also: ServletContextAttributeEvent
SRV.14.2.10.1 Methods
attributeAdded(ServletContextAttributeEvent)
public void attributeAdded(ServletContextAttributeEvent scab)
Notification that a new attribute was added to the servlet context. Called after
the attribute is added.
attributeRemoved(ServletContextAttributeEvent)
public void attributeRemoved(ServletContextAttributeEvent scab)
Notification that an existing attribute has been removed from the servlet con-
text. Called after the attribute is removed.
attributeReplaced(ServletContextAttributeEvent)
public void attributeReplaced(ServletContextAttributeEvent scab)
Notification that an attribute on the servlet context has been replaced. Called
after the attribute is replaced.
SRV.14.2.11 ServletContextEvent
public class ServletContextEvent extends java.util.EventObject
All Implemented Interfaces: java.io.Serializable
183 JAVAX.SERVLET
SRV.14.2.11.1 Constructors
ServletContextEvent(ServletContext)
public ServletContextEvent(ServletContext source)
SRV.14.2.11.2 Methods
getServletContext()
public ServletContext getServletContext()
SRV.14.2.12 ServletContextListener
public interface ServletContextListener extends
java.util.EventListener
All Superinterfaces: java.util.EventListener
Implementations of this interface receive notifications about changes to the serv-
let context of the web application they are part of. To receive notification events,
the implementation class must be configured in the deployment descriptor for the
web application.
Since: v 2.3
See Also: ServletContextEvent
SRV.14.2.12.1 Methods
contextDestroyed(ServletContextEvent)
public void contextDestroyed(ServletContextEvent sce)
Final Version
The javax.servlet package 184
Notification that the servlet context is about to be shut down. All servlets and
filters have been destroy()ed before any ServletContextListeners are notified
of context destruction.
contextInitialized(ServletContextEvent)
public void contextInitialized(ServletContextEvent sce)
SRV.14.2.13 ServletException
public class ServletException extends java.lang.Exception
All Implemented Interfaces: java.io.Serializable
Direct Known Subclasses: UnavailableException
Defines a general exception a servlet can throw when it encounters difficulty.
SRV.14.2.13.1 Constructors
ServletException()
public ServletException()
ServletException(String)
public ServletException(java.lang.String message)
Constructs a new servlet exception with the specified message. The message
can be written to the server log and/or displayed for the user.
Parameters:
message - a String specifying the text of the exception message
ServletException(String, Throwable)
public ServletException(java.lang.String message,
java.lang.Throwable rootCause)
Constructs a new servlet exception when the servlet needs to throw an excep-
tion and include a message about the “root cause” exception that interfered
with its normal operation, including a description message.
Parameters:
message - a String containing the text of the exception message
185 JAVAX.SERVLET
ServletException(Throwable)
public ServletException(java.lang.Throwable rootCause)
Constructs a new servlet exception when the servlet needs to throw an excep-
tion and include a message about the “root cause” exception that interfered
with its normal operation. The exception’s message is based on the localized
message of the underlying exception.
This method calls the getLocalizedMessage method on the Throwable
exception to get a localized exception message. When subclassing Servlet-
Exception, this method can be overridden to create an exception message
designed for a specific locale.
Parameters:
rootCause - the Throwable exception that interfered with the servlet’s
normal operation, making the servlet exception necessary
SRV.14.2.13.2 Methods
getRootCause()
public java.lang.Throwable getRootCause()
SRV.14.2.14 ServletInputStream
public abstract class ServletInputStream extends java.io.InputStream
Provides an input stream for reading binary data from a client request, including
an efficient readLine method for reading data one line at a time. With some pro-
tocols, such as HTTP POST and PUT, a ServletInputStream object can be used
to read data sent from the client.
Final Version
The javax.servlet package 186
SRV.14.2.14.1 Constructors
ServletInputStream()
protected ServletInputStream()
SRV.14.2.14.2 Methods
Reads the input stream, one line at a time. Starting at an offset, reads bytes
into an array, until it reads a certain number of bytes or reaches a newline
character, which it reads into the array as well.
This method returns -1 if it reaches the end of the input stream before reading
the maximum number of bytes.
Parameters:
b - an array of bytes into which data is read
off - an integer specifying the character at which this method begins reading
len - an integer specifying the maximum number of bytes to read
Returns: an integer specifying the actual number of bytes read, or -1 if the
end of the stream is reached
Throws:
IOException - if an input or output exception has occurred
SRV.14.2.15 ServletOutputStream
public abstract class ServletOutputStream extends
java.io.OutputStream
Provides an output stream for sending binary data to the client. A Servlet-
OutputStream object is normally retrieved via the
ServletResponse.getOutputStream() method.
This is an abstract class that the servlet container implements. Subclasses of this
class must implement the java.io.OutputStream.write(int) method.
See Also: ServletResponse
187 JAVAX.SERVLET
SRV.14.2.15.1 Constructors
ServletOutputStream()
protected ServletOutputStream()
SRV.14.2.15.2 Methods
print(boolean)
public void print(boolean b)
throws IOException
Throws:
IOException - if an input or output exception occurred
print(char)
public void print(char c)
throws IOException
Throws:
IOException - if an input or output exception occurred
print(double)
public void print(double d)
throws IOException
Writes a double value to the client, with no carriage return-line feed (CRLF)
at the end.
Parameters:
d - the double value to send to the client
Throws:
IOException - if an input or output exception occurred
print(float)
Final Version
The javax.servlet package 188
Writes a float value to the client, with no carriage return-line feed (CRLF)
at the end.
Parameters:
f - the float value to send to the client
Throws:
IOException - if an input or output exception occurred
print(int)
public void print(int i)
throws IOException
Writes an int to the client, with no carriage return-line feed (CRLF) at the
end.
Parameters:
i - the int to send to the client
Throws:
IOException - if an input or output exception occurred
print(long)
public void print(long l)
throws IOException
Writes a long value to the client, with no carriage return-line feed (CRLF) at
the end.
Parameters:
l-the long value to send to the client
Throws:
IOException - if an input or output exception occurred
print(String)
public void print(java.lang.String s)
throws IOException
println()
public void println()
throws IOException
println(boolean)
public void println(boolean b)
throws IOException
Throws:
IOException - if an input or output exception occurred
println(char)
public void println(char c)
throws IOException
Throws:
IOException - if an input or output exception occurred
println(double)
public void println(double d)
throws IOException
println(float)
Final Version
The javax.servlet package 190
Throws:
IOException - if an input or output exception occurred
println(int)
public void println(int i)
throws IOException
Throws:
IOException - if an input or output exception occurred
println(long)
public void println(long l)
throws IOException
Throws:
IOException - if an input or output exception occurred
println(String)
public void println(java.lang.String s)
throws IOException
SRV.14.2.16 ServletRequest
public interface ServletRequest
All Known Subinterfaces: javax.servlet.http.HttpServletRequest
All Known Implementing Classes: ServletRequestWrapper
Defines an object to provide client request information to a servlet. The servlet
container creates a ServletRequest object and passes it as an argument to the
servlet’s service method.
A ServletRequest object provides data including parameter name and values,
attributes, and an input stream. Interfaces that extend ServletRequest can pro-
vide additional protocol-specific data (for example, HTTP data is provided by
javax.servlet.http.HttpServletRequest .
SRV.14.2.16.1 Methods
getAttribute(String)
public java.lang.Object getAttribute(java.lang.String name)
getAttributeNames()
public java.util.Enumeration getAttributeNames()
getCharacterEncoding()
public java.lang.String getCharacterEncoding()
Returns the name of the character encoding used in the body of this request.
This method returns null if the request does not specify a character encoding
Returns: a String containing the name of the character encoding, or null if
the request does not specify a character encoding
getContentLength()
public int getContentLength()
Returns the length, in bytes, of the request body and made available by the
input stream, or -1 if the length is not known. For HTTP servlets, same as the
value of the CGI variable CONTENT_LENGTH.
Returns: an integer containing the length of the request body or -1 if the
length is not known
getContentType()
public java.lang.String getContentType()
Returns the MIME type of the body of the request, or null if the type is not
known. For HTTP servlets, same as the value of the CGI variable
CONTENT_TYPE.
Returns: a String containing the name of the MIME type of the request, or
null if the type is not known
getInputStream()
public ServletInputStream getInputStream()
throws IOException
getLocalAddr()
public java.lang.String getLocalAddr()
Returns the Internet Protocol (IP) address of the interface on which the
request was received.
Returns: a String containing the IP address on which the request was
received.
Since: 2.4
getLocale()
public java.util.Locale getLocale()
Returns the preferred Locale that the client will accept content in, based on
the Accept-Language header. If the client request doesn’t provide an Accept-
Language header, this method returns the default locale for the server.
Returns: the preferred Locale for the client
getLocales()
public java.util.Enumeration getLocales()
getLocalName()
public java.lang.String getLocalName()
Returns the host name of the Internet Protocol (IP) interface on which the
request was received.
Returns: a String containing the host name of the IP on which the request
was received.
Since: 2.4
getLocalPort()
public int getLocalPort()
Returns the Internet Protocol (IP) port number of the interface on which the
request was received.
Returns: an integer specifying the port number
Final Version
The javax.servlet package 194
Since: 2.4
getParameter(String)
public java.lang.String getParameter(java.lang.String name)
If you use this method with a multivalued parameter, the value returned is
equal to the first value in the array returned by getParameterValues.
If the parameter data was sent in the request body, such as occurs with an
HTTP POST request, then reading the body directly via getInputStream()
or getReader() can interfere with the execution of this method.
Parameters:
name- a String specifying the name of the parameter
Returns: a String representing the single value of the parameter
See Also: getParameterValues(String)
getParameterMap()
public java.util.Map getParameterMap()
getParameterNames()
public java.util.Enumeration getParameterNames()
getParameterValues(String)
public java.lang.String[] getParameterValues(java.lang.String name)
Returns an array of String objects containing all of the values the given
request parameter has, or null if the parameter does not exist.
If the parameter has a single value, the array has a length of 1.
Parameters:
name - a String containing the name of the parameter whose value is
requested
Returns: an array of String objects containing the parameter’s values
See Also: getParameter(String)
getProtocol()
public java.lang.String getProtocol()
Returns the name and version of the protocol the request uses in the form
protocol/majorVersion.minorVersion, for example, HTTP/1.1. For HTTP
servlets, the value returned is the same as the value of the CGI variable
SERVER_PROTOCOL.
getReader()
public java.io.BufferedReader getReader()
throws IOException
getRealPath(String)
public java.lang.String getRealPath(java.lang.String path)
Final Version
The javax.servlet package 196
getRemoteAddr()
public java.lang.String getRemoteAddr()
Returns the Internet Protocol (IP) address of the client or last proxy that sent
the request. For HTTP servlets, same as the value of the CGI variable
REMOTE_ADDR.
Returns: a String containing the IP address of the client that sent the
request
getRemoteHost()
public java.lang.String getRemoteHost()
Returns the fully qualified name of the client or the last proxy that sent the
request. If the engine cannot or chooses not to resolve the hostname (to
improve performance), this method returns the dotted-string form of the IP
address. For HTTP servlets, same as the value of the CGI variable
REMOTE_HOST.
getRemotePort()
public int getRemotePort()
Returns the Internet Protocol (IP) source port of the client or last proxy that
sent the request.
Returns: an integer specifying the port number
Since: 2.4
getRequestDispatcher(String)
public RequestDispatcher getRequestDispatcher(java.lang.String
path)
getScheme()
public java.lang.String getScheme()
Returns the name of the scheme used to make this request, for example, http,
https, or ftp. Different schemes have different rules for constructing URLs,
as noted in RFC 1738.
Returns: a String containing the name of the scheme used to make this
request
getServerName()
public java.lang.String getServerName()
Returns the host name of the server to which the request was sent. It is the
value of the part before “:” in the Host header value, if any, or the resolved
server name, or the server IP address.
Returns: a String containing the name of the server
getServerPort()
public int getServerPort()
Returns the port number to which the request was sent. It is the value of the
part after “:” in the Host header value, if any, or the server port where the cli-
ent connection was accepted on.
Returns: an integer specifying the port number
isSecure()
public boolean isSecure()
Returns a boolean indicating whether this request was made using a secure
channel, such as HTTPS.
Final Version
The javax.servlet package 198
removeAttribute(String)
public void removeAttribute(java.lang.String name)
Removes an attribute from this request. This method is not generally needed
as attributes only persist as long as the request is being handled.
Attribute names should follow the same conventions as package names.
Names beginning with java.*, javax.*, and com.sun.*, are reserved for use
by Sun Microsystems.
Parameters:
name - a String specifying the name of the attribute to remove
setAttribute(String, Object)
public void setAttribute(java.lang.String name, java.lang.Object o)
Stores an attribute in this request. Attributes are reset between requests. This
method is most often used in conjunction with RequestDispatcher .
Attribute names should follow the same conventions as package names.
Names beginning with java.*, javax.*, and com.sun.*, are reserved for use
by Sun Microsystems.
If the object passed in is null, the effect is the same as calling
removeAttribute(String) .
It is warned that when the request is dispatched from the servlet resides in a
different web application by RequestDispatcher, the object set by this
method may not be correctly retrieved in the caller servlet.
Parameters:
name- a String specifying the name of the attribute
o- the Object to be stored
setCharacterEncoding(String)
public void setCharacterEncoding(java.lang.String env)
throws UnsupportedEncodingException
Overrides the name of the character encoding used in the body of this
request. This method must be called prior to reading request parameters or
reading input using getReader().
Parameters:
env - a String containing the name of the character encoding.
Throws:
java.io.UnsupportedEncodingException - if this is not a valid encoding
199 JAVAX.SERVLET
SRV.14.2.17 ServletRequestAttributeEvent
public class ServletRequestAttributeEvent extends
javax.servlet.ServletRequestEvent
All Implemented Interfaces: java.io.Serializable
This is the event class for notifications of changes to the attributes of Servlet-
Request in an application.
Since: Servlet 2.4
SRV.14.2.17.1 Constructors
SRV.14.2.17.2 Methods
getName()
public java.lang.String getName()
getValue()
public java.lang.Object getValue()
Returns the value of the attribute that has been added, removed or replaced. If
the attribute was added, this is the value of the attribute. If the attribute was
removed, this is the value of the removed attribute. If the attribute was
replaced, this is the old value of the attribute.
Final Version
The javax.servlet package 200
SRV.14.2.18 ServletRequestAttributeListener
public interface ServletRequestAttributeListener
SRV.14.2.18.1 Methods
attributeAdded(ServletRequestAttributeEvent)
public void attributeAdded(ServletRequestAttributeEvent srae)
Notification that a new attribute was added to the servlet request. Called after
the attribute is added.
attributeRemoved(ServletRequestAttributeEvent)
public void attributeRemoved(ServletRequestAttributeEvent srae)
Notification that a new attribute was removed from the servlet request.
Called after the attribute is removed.
attributeReplaced(ServletRequestAttributeEvent)
public void attributeReplaced(ServletRequestAttributeEvent srae)
Notification that an attribute was replaced on the servlet request. Called after
the attribute is replaced.
SRV.14.2.19 ServletRequestEvent
public class ServletRequestEvent extends java.util.EventObject
All Implemented Interfaces: java.io.Serializable
Direct Known Subclasses: ServletRequestAttributeEvent
Events of this kind indicate lifecycle events for a ServletRequest. The source of
the event is the ServletContext of this web application.
Since: Servlet 2.4
201 JAVAX.SERVLET
SRV.14.2.19.1 Constructors
ServletRequestEvent(ServletContext, ServletRequest)
public ServletRequestEvent(ServletContext sc,
ServletRequest request)
SRV.14.2.19.2 Methods
getServletContext()
public ServletContext getServletContext()
getServletRequest()
public ServletRequest getServletRequest()
SRV.14.2.20 ServletRequestListener
public interface ServletRequestListener
SRV.14.2.20.1 Methods
requestDestroyed(ServletRequestEvent)
public void requestDestroyed(ServletRequestEvent rre)
Final Version
The javax.servlet package 202
requestInitialized(ServletRequestEvent)
public void requestInitialized(ServletRequestEvent rre)
SRV.14.2.21 ServletRequestWrapper
public class ServletRequestWrapper implements
javax.servlet.ServletRequest
All Implemented Interfaces: ServletRequest
Direct Known Subclasses: javax.servlet.http.HttpServletRequestWrapper
Provides a convenient implementation of the ServletRequest interface that can be
subclassed by developers wishing to adapt the request to a Servlet. This class
implements the Wrapper or Decorator pattern. Methods default to calling through
to the wrapped request object.
Since: v 2.3
See Also: ServletRequest
SRV.14.2.21.1 Constructors
ServletRequestWrapper(ServletRequest)
public ServletRequestWrapper(ServletRequest request)
SRV.14.2.21.2 Methods
getAttribute(String)
public java.lang.Object getAttribute(java.lang.String name)
getAttributeNames()
public java.util.Enumeration getAttributeNames()
getCharacterEncoding()
public java.lang.String getCharacterEncoding()
getContentLength()
public int getContentLength()
getContentType()
public java.lang.String getContentType()
getInputStream()
public ServletInputStream getInputStream()
throws IOException
Throws:
IOException
getLocalAddr()
public java.lang.String getLocalAddr()
Final Version
The javax.servlet package 204
Since: 2.4
getLocale()
public java.util.Locale getLocale()
getLocales()
public java.util.Enumeration getLocales()
getLocalName()
public java.lang.String getLocalName()
Since: 2.4
getLocalPort()
public int getLocalPort()
Since: 2.4
getParameter(String)
public java.lang.String getParameter(java.lang.String name)
getParameterMap()
public java.util.Map getParameterMap()
getParameterNames()
public java.util.Enumeration getParameterNames()
getParameterValues(String)
public java.lang.String[] getParameterValues(java.lang.String name)
getProtocol()
public java.lang.String getProtocol()
getReader()
public java.io.BufferedReader getReader()
throws IOException
Final Version
The javax.servlet package 206
IOException
getRealPath(String)
public java.lang.String getRealPath(java.lang.String path)
getRemoteAddr()
public java.lang.String getRemoteAddr()
getRemoteHost()
public java.lang.String getRemoteHost()
getRemotePort()
public int getRemotePort()
Since: 2.4
getRequest()
public ServletRequest getRequest()
getRequestDispatcher(String)
public RequestDispatcher getRequestDispatcher(java.lang.String
path)
207 JAVAX.SERVLET
getScheme()
public java.lang.String getScheme()
getServerName()
public java.lang.String getServerName()
getServerPort()
public int getServerPort()
isSecure()
public boolean isSecure()
removeAttribute(String)
public void removeAttribute(java.lang.String name)
Final Version
The javax.servlet package 208
setAttribute(String, Object)
public void setAttribute(java.lang.String name, java.lang.Object o)
setCharacterEncoding(String)
public void setCharacterEncoding(java.lang.String enc)
throws UnsupportedEncodingException
The default behavior of this method is to set the character encoding on the
wrapped request object.
Specified By: ServletRequest.setCharacterEncoding(String) in
interface ServletRequest
Throws:
UnsupportedEncodingException
setRequest(ServletRequest)
public void setRequest(ServletRequest request)
SRV.14.2.22 ServletResponse
public interface ServletResponse
All Known Subinterfaces: javax.servlet.http.HttpServletResponse
All Known Implementing Classes: ServletResponseWrapper
Defines an object to assist a servlet in sending a response to the client. The servlet
container creates a ServletResponse object and passes it as an argument to the
servlet’s service method.
To send binary data in a MIME body response, use the ServletOutputStream
returned by getOutputStream() . To send character data, use the PrintWriter
object returned by getWriter() . To mix binary and text data, for example, to
create a multipart response, use a ServletOutputStream and manage the charac-
ter sections manually.
The charset for the MIME body response can be specified explicitly using the
setCharacterEncoding(String) and setContentType(String) methods, or
209 JAVAX.SERVLET
SRV.14.2.22.1 Methods
flushBuffer()
public void flushBuffer()
throws IOException
Forces any content in the buffer to be written to the client. A call to this
method automatically commits the response, meaning the status code and
headers will be written.
Throws:
IOException
See Also: setBufferSize(int), getBufferSize(), isCommitted(),
reset()
getBufferSize()
public int getBufferSize()
Returns the actual buffer size used for the response. If no buffering is used,
this method returns 0.
Returns: the actual buffer size used
See Also: setBufferSize(int), flushBuffer(), isCommitted(), reset()
getCharacterEncoding()
public java.lang.String getCharacterEncoding()
Returns the name of the character encoding (MIME charset) used for the
body sent in this response. The character encoding may have been specified
explicitly using the setCharacterEncoding(String) or
setContentType(String) methods, or implicitly using the
setLocale(Locale) method. Explicit specifications take precedence over
implicit specifications. Calls made to these methods after getWriter has
been called or after the response has been committed have no effect on the
Final Version
The javax.servlet package 210
getContentType()
public java.lang.String getContentType()
Returns the content type used for the MIME body sent in this response. The
content type proper must have been specified using
setContentType(String) before the response is committed. If no content
type has been specified, this method returns null. If a content type has been
specified and a character encoding has been explicitly or implicitly specified
as described in getCharacterEncoding() , the charset parameter is included
in the string returned. If no character encoding has been specified, the charset
parameter is omitted.
Returns: a String specifying the content type, for example, text/html;
charset=UTF-8, or null
Since: 2.4
getLocale()
public java.util.Locale getLocale()
Returns the locale specified for this response using the setLocale(Locale)
method. Calls made to setLocale after the response is committed have no
effect. If no locale has been specified, the container’s default locale is
returned.
See Also: setLocale(Locale)
getOutputStream()
public ServletOutputStream getOutputStream()
throws IOException
getWriter()
public java.io.PrintWriter getWriter()
throws IOException
Returns a PrintWriter object that can send character text to the client. The
PrintWriter uses the character encoding returned by
getCharacterEncoding() . If the response’s character encoding has not
been specified as described in getCharacterEncoding (i.e., the method just
returns the default value ISO-8859-1), getWriter updates it to ISO-8859-1.
Calling flush() on the PrintWriter commits the response.
Either this method or getOutputStream() may be called to write the body,
not both.
Returns: a PrintWriter object that can return character data to the client
Throws:
UnsupportedEncodingException - if the character encoding returned by
getCharacterEncoding cannot be used
IllegalStateException - if the getOutputStream method has already been
called for this response object
IOException - if an input or output exception occurred
See Also: getOutputStream(), setCharacterEncoding(String)
isCommitted()
public boolean isCommitted()
reset()
public void reset()
Final Version
The javax.servlet package 212
Clears any data that exists in the buffer as well as the status code and headers.
If the response has been committed, this method throws an IllegalState-
Exception.
Throws:
IllegalStateException - if the response has already been committed
See Also: setBufferSize(int), getBufferSize(), flushBuffer(),
isCommitted()
resetBuffer()
public void resetBuffer()
Clears the content of the underlying buffer in the response without clearing
headers or status code. If the response has been committed, this method
throws an IllegalStateException.
Since: 2.3
See Also: setBufferSize(int), getBufferSize(), isCommitted(),
reset()
setBufferSize(int)
public void setBufferSize(int size)
Sets the preferred buffer size for the body of the response. The servlet con-
tainer will use a buffer at least as large as the size requested. The actual buffer
size used can be found using getBufferSize.
A larger buffer allows more content to be written before anything is actually
sent, thus providing the servlet with more time to set appropriate status codes
and headers. A smaller buffer decreases server memory load and allows the
client to start receiving data more quickly.
This method must be called before any response body content is written; if
content has been written or the response object has been committed, this
method throws an IllegalStateException.
Parameters:
size - the preferred buffer size
Throws:
IllegalStateException - if this method is called after content has been
written
See Also: getBufferSize(), flushBuffer(), isCommitted(), reset()
setCharacterEncoding(String)
public void setCharacterEncoding(java.lang.String charset)
213 JAVAX.SERVLET
Sets the character encoding (MIME charset) of the response being sent to the
client, for example, to UTF-8. If the character encoding has already been set
by setContentType(String) or setLocale(Locale) , this method over-
rides it. Calling setContentType(String) with the String of text/html
and calling this method with the String of UTF-8 is equivalent with calling
setContentType with the String of text/html; charset=UTF-8.
This method can be called repeatedly to change the character encoding. This
method has no effect if it is called after getWriter has been called or after the
response has been committed.
Containers must communicate the character encoding used for the servlet
response’s writer to the client if the protocol provides a way for doing so. In
the case of HTTP, the character encoding is communicated as part of the
Content-Type header for text media types. Note that the character encoding
cannot be communicated via HTTP headers if the servlet does not specify a
content type; however, it is still used to encode text written via the servlet
response’s writer.
Parameters:
charset - a String specifying only the character set defined by IANA
Character Sets (http://www.iana.org/assignments/character-sets)
Since: 2.4
See Also: setContentType(String)
setContentLength(int)
public void setContentLength(int len)
Sets the length of the content body in the response In HTTP servlets, this
method sets the HTTP Content-Length header.
Parameters:
len - an integer specifying the length of the content being returned to the
client; sets the Content-Length header
setContentType(String)
public void setContentType(java.lang.String type)
Sets the content type of the response being sent to the client, if the response
has not been committed yet. The given content type may include a character
encoding specification, for example, text/html;charset=UTF-8. The
response’s character encoding is only set from the given content type if this
method is called before getWriter is called.
This method may be called repeatedly to change content type and character
encoding. This method has no effect if called after the response has been
Final Version
The javax.servlet package 214
setLocale(Locale)
public void setLocale(java.util.Locale loc)
Sets the locale of the response, if the response has not been committed yet. It
also sets the response’s character encoding appropriately for the locale, if the
character encoding has not been explicitly set using
setContentType(String) or setCharacterEncoding(String) , get-
Writer hasn’t been called yet, and the response hasn’t been committed yet. If
the deployment descriptor contains a locale-encoding-mapping-list ele-
ment, and that element provides a mapping for the given locale, that mapping
is used. Otherwise, the mapping from locale to character encoding is con-
tainer dependent.
This method may be called repeatedly to change locale and character encod-
ing. The method has no effect if called after the response has been commit-
ted. It does not set the response’s character encoding if it is called after
setContentType(String) has been called with a charset specification, after
setCharacterEncoding(String) has been called, after getWriter has been
called, or after the response has been committed.
Containers must communicate the locale and the character encoding used for
the servlet response’s writer to the client if the protocol provides a way for
doing so. In the case of HTTP, the locale is communicated via the Content-
Language header, the character encoding as part of the Content-Type header
for text media types. Note that the character encoding cannot be communi-
cated via HTTP headers if the servlet does not specify a content type; how-
ever, it is still used to encode text written via the servlet response’s writer.
Parameters:
loc- the locale of the response
See Also: getLocale(), setContentType(String),
setCharacterEncoding(String)
215 JAVAX.SERVLET
SRV.14.2.23 ServletResponseWrapper
public class ServletResponseWrapper implements
javax.servlet.ServletResponse
All Implemented Interfaces: ServletResponse
Direct Known Subclasses: javax.servlet.http.HttpServletResponseWrap-
per
SRV.14.2.23.1 Constructors
ServletResponseWrapper(ServletResponse)
public ServletResponseWrapper(ServletResponse response)
SRV.14.2.23.2 Methods
flushBuffer()
public void flushBuffer()
throws IOException
Throws:
IOException
getBufferSize()
public int getBufferSize()
Final Version
The javax.servlet package 216
getCharacterEncoding()
public java.lang.String getCharacterEncoding()
getContentType()
public java.lang.String getContentType()
Since: 2.4
getLocale()
public java.util.Locale getLocale()
getOutputStream()
public ServletOutputStream getOutputStream()
throws IOException
Throws:
IOException
getResponse()
public ServletResponse getResponse()
getWriter()
public java.io.PrintWriter getWriter()
throws IOException
Throws:
IOException
isCommitted()
public boolean isCommitted()
reset()
public void reset()
The default behavior of this method is to call reset() on the wrapped response
object.
Specified By: ServletResponse.reset() in interface ServletResponse
resetBuffer()
public void resetBuffer()
setBufferSize(int)
public void setBufferSize(int size)
setCharacterEncoding(String)
Final Version
The javax.servlet package 218
setContentLength(int)
public void setContentLength(int len)
setContentType(String)
public void setContentType(java.lang.String type)
setLocale(Locale)
public void setLocale(java.util.Locale loc)
setResponse(ServletResponse)
public void setResponse(ServletResponse response)
SRV.14.2.24 SingleThreadModel
public interface SingleThreadModel
Deprecated. As of Java Servlet API 2.4, with no direct replacement.
219 JAVAX.SERVLET
Ensures that servlets handle only one request at a time. This interface has no
methods.
If a servlet implements this interface, you are guaranteed that no two threads will
execute concurrently in the servlet’s service method. The servlet container can
make this guarantee by synchronizing access to a single instance of the servlet, or
by maintaining a pool of servlet instances and dispatching each new request to a
free servlet.
Note that SingleThreadModel does not solve all thread safety issues. For exam-
ple, session attributes and static variables can still be accessed by multiple
requests on multiple threads at the same time, even when SingleThreadModel
servlets are used. It is recommended that a developer take other means to resolve
those issues instead of implementing this interface, such as avoiding the usage of
an instance variable or synchronizing the block of the code accessing those
resources. This interface is deprecated in Servlet API version 2.4.
SRV.14.2.25 UnavailableException
public class UnavailableException extends
javax.servlet.ServletException
All Implemented Interfaces: java.io.Serializable
Defines an exception that a servlet or filter throws to indicate that it is perma-
nently or temporarily unavailable.
SRV.14.2.25.1 Constructors
Final Version
The javax.servlet package 220
Parameters:
seconds - an integer specifying the number of seconds the servlet expects to
be unavailable; if zero or negative, indicates that the servlet can’t make an
estimate
servlet - the Servlet that is unavailable
msg - a String specifying the descriptive message, which can be written to a
log file or displayed for the user.
UnavailableException(Servlet, String)
public UnavailableException(Servlet servlet, java.lang.String msg)
Parameters:
servlet- the Servlet instance that is unavailable
msg - a String specifying the descriptive message
UnavailableException(String)
public UnavailableException(java.lang.String msg)
UnavailableException(String, int)
public UnavailableException(java.lang.String msg, int seconds)
SRV.14.2.25.2 Methods
getServlet()
public Servlet getServlet()
getUnavailableSeconds()
public int getUnavailableSeconds()
isPermanent()
public boolean isPermanent()
Final Version
C H A P T E R SRV.15
javax.servlet.http
This chapter describes the javax.servlet.http package. The chapter includes content
that is generated automatically from the javadoc embedded in the actual Java classes
and interfaces. This allows the creation of a single, authoritative, specification docu-
ment.
Class Summary
Interfaces
HttpServletRequest Extends the javax.servlet.ServletRequest
interface to provide request information for
HTTP servlets.
222
223 JAVAX.SERVLET.HTTP
Class Summary
HttpServletResponse Extends the javax.servlet.ServletResponse
interface to provide HTTP-specific functionality
in sending a response.
HttpSession Provides a way to identify a user across more
than one page request or visit to a Web site and
to store information about that user.
HttpSessionActivation- Objects that are bound to a session may listen
Listener to container events notifying them that sessions
will be passivated and that session will be
activated.
HttpSessionAt- This listener interface can be implemented in
tributeListener order to get notifications of changes to the
attribute lists of sessions within this web
application.
HttpSessionBindingLis- Causes an object to be notified when it is bound
tener to or unbound from a session.
HttpSessionContext
Classes
Cookie Creates a cookie, a small amount of information
sent by a servlet to a Web browser, saved by the
browser, and later sent back to the server.
HttpServlet Provides an abstract class to be subclassed to
create an HTTP servlet suitable for a Web site.
HttpServletRequestWrap- Provides a convenient implementation of the
per HttpServletRequest interface that can be
subclassed by developers wishing to adapt the
request to a Servlet.
HttpServletResponse- Provides a convenient implementation of the
Wrapper HttpServletResponse interface that can be
subclassed by developers wishing to adapt the
response from a Servlet.
Final Version
Servlets Using HTTP Protocol 224
Class Summary
HttpSessionBindingEvent Events of this type are either sent to an object
that implements HttpSessionBindingListener
when it is bound or unbound from a session, or
to a HttpSessionAttributeListener that has
been configured in the deployment descriptor
when any attribute is bound, unbound or
replaced in a session.
HttpSessionEvent This is the class representing event notifications
for changes to sessions within a web
application.
HttpUtils
SRV.15.1.1 Cookie
public class Cookie implements java.lang.Cloneable
All Implemented Interfaces: java.lang.Cloneable
Creates a cookie, a small amount of information sent by a servlet to a Web
browser, saved by the browser, and later sent back to the server. A cookie’s value
can uniquely identify a client, so cookies are commonly used for session manage-
ment.
A cookie has a name, a single value, and optional attributes such as a comment,
path and domain qualifiers, a maximum age, and a version number. Some Web
browsers have bugs in how they handle the optional attributes, so use them spar-
ingly to improve the interoperability of your servlets.
The servlet sends cookies to the browser by using the
HttpServletResponse.addCookie(Cookie) method, which adds fields to
HTTP response headers to send cookies to the browser, one at a time. The
browser is expected to support 20 cookies for each Web server, 300 cookies total,
and may limit cookie size to 4 KB each.
The browser returns cookies to the servlet by adding fields to HTTP request head-
ers. Cookies can be retrieved from a request by using the
HttpServletRequest.getCookies() method. Several cookies might have the
same name but different path attributes.
Cookies affect the caching of the Web pages that use them. HTTP 1.0 does not
cache pages that use cookies created with this class. This class does not support
the cache control defined with HTTP 1.1.
225 JAVAX.SERVLET.HTTP
This class supports both the Version 0 (by Netscape) and Version 1 (by RFC
2109) cookie specifications. By default, cookies are created using Version 0 to
ensure the best interoperability.
SRV.15.1.1.1 Constructors
Cookie(String, String)
public Cookie(java.lang.String name, java.lang.String value)
SRV.15.1.1.2 Methods
clone()
public java.lang.Object clone()
getComment()
public java.lang.String getComment()
Final Version
Servlets Using HTTP Protocol 226
Returns the comment describing the purpose of this cookie, or null if the
cookie has no comment.
Returns: a String containing the comment, or null if none
See Also: setComment(String)
getDomain()
public java.lang.String getDomain()
Returns the domain name set for this cookie. The form of the domain name is
set by RFC 2109.
Returns: a String containing the domain name
See Also: setDomain(String)
getMaxAge()
public int getMaxAge()
getName()
public java.lang.String getName()
Returns the name of the cookie. The name cannot be changed after creation.
Returns: a String specifying the cookie’s name
getPath()
public java.lang.String getPath()
Returns the path on the server to which the browser returns this cookie. The
cookie is visible to all subpaths on the server.
Returns: a String specifying a path that contains a servlet name, for
example, /catalog
See Also: setPath(String)
getSecure()
public boolean getSecure()
Returns true if the browser is sending cookies only over a secure protocol, or
false if the browser can send cookies using any protocol.
227 JAVAX.SERVLET.HTTP
getValue()
public java.lang.String getValue()
getVersion()
public int getVersion()
Returns the version of the protocol this cookie complies with. Version 1 com-
plies with RFC 2109, and version 0 complies with the original cookie specifi-
cation drafted by Netscape. Cookies provided by a browser use and identify
the browser’s cookie version.
Returns: 0 if the cookie complies with the original Netscape specification; 1
if the cookie complies with RFC 2109
See Also: setVersion(int)
setComment(String)
public void setComment(java.lang.String purpose)
setDomain(String)
public void setDomain(java.lang.String pattern)
Final Version
Servlets Using HTTP Protocol 228
pattern - a String containing the domain name within which this cookie is
visible; form is according to RFC 2109
See Also: getDomain()
setMaxAge(int)
public void setMaxAge(int expiry)
setPath(String)
public void setPath(java.lang.String uri)
Specifies a path for the cookie to which the client should return the cookie.
The cookie is visible to all the pages in the directory you specify, and all the
pages in that directory’s subdirectories. A cookie’s path must include the
servlet that set the cookie, for example, /catalog, which makes the cookie vis-
ible to all directories on the server under /catalog.
Consult RFC 2109 (available on the Internet) for more information on setting
path names for cookies.
Parameters:
uri - a String specifying a path
setSecure(boolean)
public void setSecure(boolean flag)
Indicates to the browser whether the cookie should only be sent using a
secure protocol, such as HTTPS or SSL.
The default value is false.
Parameters:
229 JAVAX.SERVLET.HTTP
flag - if true, sends the cookie from the browser to the server only when
using a secure protocol; if false, sent on any protocol
See Also: getSecure()
setValue(String)
public void setValue(java.lang.String newValue)
Assigns a new value to a cookie after the cookie is created. If you use a
binary value, you may want to use BASE64 encoding.
With Version 0 cookies, values should not contain white space, brackets,
parentheses, equals signs, commas, double quotes, slashes, question marks, at
signs, colons, and semicolons. Empty values may not behave the same way
on all browsers.
Parameters:
newValue - a String specifying the new value
setVersion(int)
public void setVersion(int v)
Sets the version of the cookie protocol this cookie complies with. Version 0
complies with the original Netscape cookie specification. Version 1 complies
with RFC 2109.
Since RFC 2109 is still somewhat new, consider version 1 as experimental;
do not use it yet on production sites.
Parameters:
v - 0 if the cookie should comply with the original Netscape specification; 1 if
the cookie should comply with RFC 2109
See Also: getVersion()
SRV.15.1.2 HttpServlet
public abstract class HttpServlet extends
javax.servlet.GenericServlet implements java.io.Serializable
All Implemented Interfaces: java.io.Serializable, javax.servlet.Serv-
let, javax.servlet.ServletConfig
Final Version
Servlets Using HTTP Protocol 230
SRV.15.1.2.1 Constructors
HttpServlet()
public HttpServlet()
SRV.15.1.2.2 Methods
doDelete(HttpServletRequest, HttpServletResponse)
protected void doDelete(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Called by the server (via the service method) to allow a servlet to handle a
DELETE request. The DELETE operation allows a client to remove a docu-
ment or Web page from the server.
This method does not need to be either safe or idempotent. Operations
requested through DELETE can have side effects for which users can be held
accountable. When using this method, it may be useful to save a copy of the
affected URL in temporary storage.
If the HTTP DELETE request is incorrectly formatted, doDelete returns an
HTTP “Bad Request” message.
231 JAVAX.SERVLET.HTTP
Parameters:
req - the HttpServletRequest object that contains the request the client
made of the servlet
resp - the HttpServletResponse object that contains the response the
servlet returns to the client
Throws:
IOException -if an input or output error occurs while the servlet is handling
the DELETE request
javax.servlet.ServletException - if the request for the DELETE cannot
be handled
doGet(HttpServletRequest, HttpServletResponse)
protected void doGet(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Called by the server (via the service method) to allow a servlet to handle a
GET request.
Overriding this method to support a GET request also automatically supports
an HTTP HEAD request. A HEAD request is a GET request that returns no
body in the response, only the request header fields.
When overriding this method, read the request data, write the response head-
ers, get the response’s writer or output stream object, and finally, write the
response data. It’s best to include content type and encoding. When using a
PrintWriter object to return the response, set the content type before access-
ing the PrintWriter object.
The servlet container must write the headers before committing the response,
because in HTTP the headers must be sent before the response body.
Where possible, set the Content-Length header (with the
javax.servlet.ServletResponse.setContentLength(int) method), to
allow the servlet container to use a persistent connection to return its
response to the client, improving performance. The content length is auto-
matically set if the entire response fits inside the response buffer.
When using HTTP 1.1 chunked encoding (which means that the response has
a Transfer-Encoding header), do not set the Content-Length header.
The GET method should be safe, that is, without any side effects for which
users are held responsible. For example, most form queries have no side
effects. If a client request is intended to change stored data, the request
should use some other HTTP method.
Final Version
Servlets Using HTTP Protocol 232
The GET method should also be idempotent, meaning that it can be safely
repeated. Sometimes making a method safe also makes it idempotent. For
example, repeating queries is both safe and idempotent, but buying a product
online or modifying data is neither safe nor idempotent.
If the request is incorrectly formatted, doGet returns an HTTP “Bad Request”
message.
Parameters:
req -
an HttpServletRequest object that contains the request the client has
made of the servlet
resp - an HttpServletResponse object that contains the response the servlet
sends to the client
Throws:
IOException - if an input or output error is detected when the servlet handles
the GET request
javax.servlet.ServletException - if the request for the GET could not be
handled
See Also: javax.servlet.ServletResponse.setContentType(String)
doHead(HttpServletRequest, HttpServletResponse)
protected void doHead(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Receives an HTTP HEAD request from the protected service method and
handles the request. The client sends a HEAD request when it wants to see
only the headers of a response, such as Content-Type or Content-Length. The
HTTP HEAD method counts the output bytes in the response to set the Con-
tent-Length header accurately.
If you override this method, you can avoid computing the response body and
just set the response headers directly to improve performance. Make sure that
the doHead method you write is both safe and idempotent (that is, protects
itself from being called multiple times for one HTTP HEAD request).
If the HTTP HEAD request is incorrectly formatted, doHead returns an HTTP
“Bad Request” message.
Parameters:
req - the request object that is passed to the servlet
resp - the response object that the servlet uses to return the headers to the
clien
Throws:
233 JAVAX.SERVLET.HTTP
doOptions(HttpServletRequest, HttpServletResponse)
protected void doOptions(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Called by the server (via the service method) to allow a servlet to handle a
OPTIONS request. The OPTIONS request determines which HTTP methods
the server supports and returns an appropriate header. For example, if a serv-
let overrides doGet, this method returns the following header:
Allow: GET, HEAD, TRACE, OPTIONS
There’s no need to override this method unless the servlet implements new
HTTP methods, beyond those implemented by HTTP 1.1.
Parameters:
req - the HttpServletRequest object that contains the request the client
made of the servlet
resp - the HttpServletResponse object that contains the response the
servlet returns to the client
Throws:
IOException -
if an input or output error occurs while the servlet is handling
the OPTIONS request
javax.servlet.ServletException - if the request for the OPTIONS cannot
be handled
doPost(HttpServletRequest, HttpServletResponse)
protected void doPost(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Called by the server (via the service method) to allow a servlet to handle a
POST request. The HTTP POST method allows the client to send data of
unlimited length to the Web server a single time and is useful when posting
information such as credit card numbers.
When overriding this method, read the request data, write the response head-
ers, get the response’s writer or output stream object, and finally, write the
response data. It’s best to include content type and encoding. When using a
PrintWriter object to return the response, set the content type before access-
ing the PrintWriter object.
Final Version
Servlets Using HTTP Protocol 234
The servlet container must write the headers before committing the response,
because in HTTP the headers must be sent before the response body.
Where possible, set the Content-Length header (with the
javax.servlet.ServletResponse.setContentLength(int) method), to
allow the servlet container to use a persistent connection to return its
response to the client, improving performance. The content length is auto-
matically set if the entire response fits inside the response buffer.
When using HTTP 1.1 chunked encoding (which means that the response has
a Transfer-Encoding header), do not set the Content-Length header.
This method does not need to be either safe or idempotent. Operations
requested through POST can have side effects for which the user can be held
accountable, for example, updating stored data or buying items online.
If the HTTP POST request is incorrectly formatted, doPost returns an HTTP
“Bad Request” message.
Parameters:
req - an HttpServletRequest object that contains the request the client has
made of the servlet
resp - an HttpServletResponse object that contains the response the servlet
sends to the client
Throws:
IOException - if an input or output error is detected when the servlet handles
the request
javax.servlet.ServletException - if the request for the POST could not
be handled
See Also: javax.servlet.ServletOutputStream,
javax.servlet.ServletResponse.setContentType(String)
doPut(HttpServletRequest, HttpServletResponse)
protected void doPut(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Called by the server (via the service method) to allow a servlet to handle a
PUT request. The PUT operation allows a client to place a file on the server
and is similar to sending a file by FTP.
When overriding this method, leave intact any content headers sent with the
request (including Content-Length, Content-Type, Content-Transfer-Encod-
ing, Content-Encoding, Content-Base, Content-Language, Content-Location,
Content-MD5, and Content-Range). If your method cannot handle a content
header, it must issue an error message (HTTP 501 - Not Implemented) and
235 JAVAX.SERVLET.HTTP
discard the request. For more information on HTTP 1.1, see RFC 2616
(http://www.ietf.org/rfc/rfc2616.txt).
This method does not need to be either safe or idempotent. Operations that
doPut performs can have side effects for which the user can be held account-
able. When using this method, it may be useful to save a copy of the affected
URL in temporary storage.
If the HTTP PUT request is incorrectly formatted, doPut returns an HTTP
“Bad Request” message.
Parameters:
req - the HttpServletRequest object that contains the request the client
made of the servlet
resp - the HttpServletResponse object that contains the response the
servlet returns to the client
Throws:
IOException - if an input or output error occurs while the servlet is handling
the PUT request
javax.servlet.ServletException - if the request for the PUT cannot be
handled
doTrace(HttpServletRequest, HttpServletResponse)
protected void doTrace(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Called by the server (via the service method) to allow a servlet to handle a
TRACE request. A TRACE returns the headers sent with the TRACE request
to the client, so that they can be used in debugging. There’s no need to over-
ride this method.
Parameters:
req - the HttpServletRequest object that contains the request the client
made of the servlet
resp - the HttpServletResponse object that contains the response the
servlet returns to the client
Throws:
IOException - if an input or output error occurs while the servlet is handling
the TRACE request
javax.servlet.ServletException - if the request for the TRACE cannot
be handled
getLastModified(HttpServletRequest)
Final Version
Servlets Using HTTP Protocol 236
Returns the time the HttpServletRequest object was last modified, in milli-
seconds since midnight January 1, 1970 GMT. If the time is unknown, this
method returns a negative number (the default).
Servlets that support HTTP GET requests and can quickly determine their
last modification time should override this method. This makes browser and
proxy caches work more effectively, reducing the load on server and network
resources.
Parameters:
req- the HttpServletRequest object that is sent to the servlet
Returns: a long integer specifying the time the HttpServletRequest object
was last modified, in milliseconds since midnight, January 1, 1970 GMT, or -
1 if the time is not known
service(HttpServletRequest, HttpServletResponse)
protected void service(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException
Receives standard HTTP requests from the public service method and dis-
patches them to the doXXX methods defined in this class. This method is an
HTTP-specific version of the javax.servlet.Servlet.service(Servle-
tRequest, ServletResponse) method. There’s no need to override this
method.
Parameters:
req - the HttpServletRequest object that contains the request the client
made of the servlet
resp - the HttpServletResponse object that contains the response the
servlet returns to the client
Throws:
IOException -if an input or output error occurs while the servlet is handling
the HTTP request
javax.servlet.ServletException - if the HTTP request cannot be handled
service(ServletRequest, ServletResponse)
public void service(javax.servlet.ServletRequest req,
javax.servlet.ServletResponse res)
throws ServletException, IOException
237 JAVAX.SERVLET.HTTP
Overrides: javax.servlet.GenericServlet.service(ServletRequest,
ServletResponse) in class javax.servlet.GenericServlet
Parameters:
req - the HttpServletRequest object that contains the request the client
made of the servlet
res - the HttpServletResponse object that contains the response the servlet
returns to the client
Throws:
IOException - if an input or output error occurs while the servlet is handling
the HTTP request
javax.servlet.ServletException - if the HTTP request cannot be handled
SRV.15.1.3 HttpServletRequest
public interface HttpServletRequest extends
javax.servlet.ServletRequest
All Superinterfaces: javax.servlet.ServletRequest
All Known Implementing Classes: HttpServletRequestWrapper
Extends the javax.servlet.ServletRequest interface to provide request infor-
mation for HTTP servlets.
The servlet container creates an HttpServletRequest object and passes it as an
argument to the servlet’s service methods (doGet, doPost, etc).
SRV.15.1.3.1 Fields
BASIC_AUTH
public static final java.lang.String BASIC_AUTH
CLIENT_CERT_AUTH
public static final java.lang.String CLIENT_CERT_AUTH
Final Version
Servlets Using HTTP Protocol 238
DIGEST_AUTH
public static final java.lang.String DIGEST_AUTH
FORM_AUTH
public static final java.lang.String FORM_AUTH
SRV.15.1.3.2 Methods
getAuthType()
public java.lang.String getAuthType()
Returns the name of the authentication scheme used to protect the servlet. All
servlet containers support basic, form and client certificate authentication,
and may additionally support digest authentication. If the servlet is not
authenticated null is returned.
Same as the value of the CGI variable AUTH_TYPE.
Returns: one of the static members BASIC_AUTH, FORM_AUTH,
CLIENT_CERT_AUTH, DIGEST_AUTH (suitable for == comparison) or
the container-specific string indicating the authentication scheme, or null if
the request was not authenticated.
getContextPath()
public java.lang.String getContextPath()
Returns the portion of the request URI that indicates the context of the
request. The context path always comes first in a request URI. The path starts
with a “/” character but does not end with a “/” character. For servlets in the
default (root) context, this method returns “”. The container does not decode
this string.
Returns: a String specifying the portion of the request URI that indicates
the context of the request
getCookies()
public Cookie[] getCookies()
Returns an array containing all of the Cookie objects the client sent with this
request. This method returns null if no cookies were sent.
239 JAVAX.SERVLET.HTTP
Returns: an array of all the Cookies included with this request, or null if
the request has no cookies
getDateHeader(String)
public long getDateHeader(java.lang.String name)
Returns the value of the specified request header as a long value that repre-
sents a Date object. Use this method with headers that contain dates, such as
If-Modified-Since.
Parameters:
name- a String specifying the name of the header
Returns: a long value representing the date specified in the header
expressed as the number of milliseconds since January 1, 1970 GMT, or -1 if
the named header was not included with the request
Throws:
IllegalArgumentException - If the header value can’t be converted to a date
getHeader(String)
public java.lang.String getHeader(java.lang.String name)
Returns the value of the specified request header as a String. If the request
did not include a header of the specified name, this method returns null. If
there are multiple headers with the same name, this method returns the first
head in the request. The header name is case insensitive. You can use this
method with any request header.
Parameters:
name - a String specifying the header name
getHeaderNames()
public java.util.Enumeration getHeaderNames()
Returns an enumeration of all the header names this request contains. If the
request has no headers, this method returns an empty enumeration.
Final Version
Servlets Using HTTP Protocol 240
Some servlet containers do not allow servlets to access headers using this
method, in which case this method returns null
Returns: an enumeration of all the header names sent with this request; if
the request has no headers, an empty enumeration; if the servlet container
does not allow servlets to use this method, null
getHeaders(String)
public java.util.Enumeration getHeaders(java.lang.String name)
getIntHeader(String)
public int getIntHeader(java.lang.String name)
Returns the value of the specified request header as an int. If the request
does not have a header of the specified name, this method returns -1. If the
header cannot be converted to an integer, this method throws a Number-
FormatException.
getMethod()
241 JAVAX.SERVLET.HTTP
Returns the name of the HTTP method with which this request was made, for
example, GET, POST, or PUT. Same as the value of the CGI variable
REQUEST_METHOD.
Returns: a String specifying the name of the method with which this
request was made
getPathInfo()
public java.lang.String getPathInfo()
Returns any extra path information associated with the URL the client sent
when it made this request. The extra path information follows the servlet path
but precedes the query string and will start with a “/” character.
This method returns null if there was no extra path information.
Same as the value of the CGI variable PATH_INFO.
Returns: a String, decoded by the web container, specifying extra path
information that comes after the servlet path but before the query string in the
request URL; or null if the URL does not have any extra path information
getPathTranslated()
public java.lang.String getPathTranslated()
Returns any extra path information after the servlet name but before the
query string, and translates it to a real path. Same as the value of the CGI
variable PATH_TRANSLATED.
If the URL does not have any extra path information, this method returns
null or the servlet container cannot translate the virtual path to a real path for
any reason (such as when the web application is executed from an archive).
The web container does not decode this string.
Returns: a String specifying the real path, or null if the URL does not
have any extra path information
getQueryString()
public java.lang.String getQueryString()
Returns the query string that is contained in the request URL after the path.
This method returns null if the URL does not have a query string. Same as
the value of the CGI variable QUERY_STRING.
Returns: a String containing the query string or null if the URL contains
no query string. The value is not decoded by the container.
Final Version
Servlets Using HTTP Protocol 242
getRemoteUser()
public java.lang.String getRemoteUser()
Returns the login of the user making this request, if the user has been authen-
ticated, or null if the user has not been authenticated. Whether the user name
is sent with each subsequent request depends on the browser and type of
authentication. Same as the value of the CGI variable REMOTE_USER.
Returns: a String specifying the login of the user making this request, or
nullif the user login is not known
getRequestedSessionId()
public java.lang.String getRequestedSessionId()
Returns the session ID specified by the client. This may not be the same as
the ID of the current valid session for this request. If the client did not specify
a session ID, this method returns null.
Returns: a String specifying the session ID, or null if the request did not
specify a session ID
See Also: isRequestedSessionIdValid()
getRequestURI()
public java.lang.String getRequestURI()
Returns the part of this request’s URL from the protocol name up to the query
string in the first line of the HTTP request. The web container does not
decode this String. For example:
getRequestURL()
243 JAVAX.SERVLET.HTTP
Reconstructs the URL the client used to make the request. The returned URL
contains a protocol, server name, port number, and server path, but it does not
include query string parameters.
Because this method returns a StringBuffer, not a string, you can modify
the URL easily, for example, to append query parameters.
This method is useful for creating redirect messages and for reporting errors.
Returns: a StringBuffer object containing the reconstructed URL
getServletPath()
public java.lang.String getServletPath()
Returns the part of this request’s URL that calls the servlet. This path starts
with a “/” character and includes either the servlet name or a path to the serv-
let, but does not include any extra path information or a query string. Same as
the value of the CGI variable SCRIPT_NAME.
This method will return an empty string (“”) if the servlet used to process this
request was matched using the “/*” pattern.
Returns: a String containing the name or path of the servlet being called,
as specified in the request URL, decoded, or an empty string if the servlet
used to process the request is matched using the “/*” pattern.
getSession()
public HttpSession getSession()
Returns the current session associated with this request, or if the request does
not have a session, creates one.
Returns: the HttpSession associated with this request
See Also: getSession(boolean)
getSession(boolean)
public HttpSession getSession(boolean create)
Returns the current HttpSession associated with this request or, if there is no
current session and create is true, returns a new session.
If create is false and the request has no valid HttpSession, this method
returns null.
To make sure the session is properly maintained, you must call this method
before the response is committed. If the container is using cookies to main-
Final Version
Servlets Using HTTP Protocol 244
tain session integrity and is asked to create a new session when the response
is committed, an IllegalStateException is thrown.
Parameters:
create - true to create a new session for this request if necessary; false to
return null if there’s no current session
Returns: the HttpSession associated with this request or null if create is
falseand the request has no valid session
See Also: getSession()
getUserPrincipal()
public java.security.Principal getUserPrincipal()
isRequestedSessionIdFromCookie()
public boolean isRequestedSessionIdFromCookie()
isRequestedSessionIdFromUrl()
public boolean isRequestedSessionIdFromUrl()
isRequestedSessionIdFromURL()
public boolean isRequestedSessionIdFromURL()
Checks whether the requested session ID came in as part of the request URL.
Returns: true if the session ID came in as part of a URL; otherwise, false
See Also: getSession(boolean)
isRequestedSessionIdValid()
public boolean isRequestedSessionIdValid()
Returns: true if this request has an id for a valid session in the current
session context; false otherwise
See Also: getRequestedSessionId(), getSession(boolean),
HttpSessionContext
isUserInRole(String)
public boolean isUserInRole(java.lang.String role)
Returns: a boolean indicating whether the user making this request belongs
to a given role; false if the user has not been authenticated
SRV.15.1.4 HttpServletRequestWrapper
public class HttpServletRequestWrapper extends
javax.servlet.ServletRequestWrapper implements
javax.servlet.http.HttpServletRequest
All Implemented Interfaces: HttpServletRequest, javax.servlet.Servle-
tRequest
SRV.15.1.4.1 Constructors
HttpServletRequestWrapper(HttpServletRequest)
public HttpServletRequestWrapper(HttpServletRequest request)
Final Version
Servlets Using HTTP Protocol 246
SRV.15.1.4.2 Methods
getAuthType()
public java.lang.String getAuthType()
getContextPath()
public java.lang.String getContextPath()
getCookies()
public Cookie[] getCookies()
getDateHeader(String)
public long getDateHeader(java.lang.String name)
getHeader(String)
public java.lang.String getHeader(java.lang.String name)
getHeaderNames()
247 JAVAX.SERVLET.HTTP
getHeaders(String)
public java.util.Enumeration getHeaders(java.lang.String name)
getIntHeader(String)
public int getIntHeader(java.lang.String name)
getMethod()
public java.lang.String getMethod()
getPathInfo()
public java.lang.String getPathInfo()
getPathTranslated()
public java.lang.String getPathTranslated()
Final Version
Servlets Using HTTP Protocol 248
getQueryString()
public java.lang.String getQueryString()
getRemoteUser()
public java.lang.String getRemoteUser()
getRequestedSessionId()
public java.lang.String getRequestedSessionId()
getRequestURI()
public java.lang.String getRequestURI()
getRequestURL()
public java.lang.StringBuffer getRequestURL()
getServletPath()
public java.lang.String getServletPath()
getSession()
public HttpSession getSession()
getSession(boolean)
public HttpSession getSession(boolean create)
getUserPrincipal()
public java.security.Principal getUserPrincipal()
isRequestedSessionIdFromCookie()
public boolean isRequestedSessionIdFromCookie()
isRequestedSessionIdFromUrl()
public boolean isRequestedSessionIdFromUrl()
Final Version
Servlets Using HTTP Protocol 250
isRequestedSessionIdFromURL()
public boolean isRequestedSessionIdFromURL()
isRequestedSessionIdValid()
public boolean isRequestedSessionIdValid()
isUserInRole(String)
public boolean isUserInRole(java.lang.String role)
SRV.15.1.5 HttpServletResponse
public interface HttpServletResponse extends
javax.servlet.ServletResponse
All Superinterfaces: javax.servlet.ServletResponse
All Known Implementing Classes: HttpServletResponseWrapper
Extends the javax.servlet.ServletResponse interface to provide HTTP-spe-
cific functionality in sending a response. For example, it has methods to access
HTTP headers and cookies.
SRV.15.1.5.1 Fields
SC_ACCEPTED
public static final int SC_ACCEPTED
Status code (202) indicating that a request was accepted for processing, but
was not completed.
SC_BAD_GATEWAY
public static final int SC_BAD_GATEWAY
Status code (502) indicating that the HTTP server received an invalid
response from a server it consulted when acting as a proxy or gateway.
SC_BAD_REQUEST
public static final int SC_BAD_REQUEST
Status code (400) indicating the request sent by the client was syntactically
incorrect.
SC_CONFLICT
public static final int SC_CONFLICT
Status code (409) indicating that the request could not be completed due to a
conflict with the current state of the resource.
SC_CONTINUE
public static final int SC_CONTINUE
SC_CREATED
public static final int SC_CREATED
Status code (201) indicating the request succeeded and created a new
resource on the server.
SC_EXPECTATION_FAILED
public static final int SC_EXPECTATION_FAILED
Status code (417) indicating that the server could not meet the expectation
given in the Expect request header.
SC_FORBIDDEN
public static final int SC_FORBIDDEN
Final Version
Servlets Using HTTP Protocol 252
Status code (403) indicating the server understood the request but refused to
fulfill it.
SC_FOUND
public static final int SC_FOUND
Status code (302) indicating that the resource reside temporarily under a dif-
ferent URI. Since the redirection might be altered on occasion, the client
should continue to use the Request-URI for future requests.(HTTP/1.1) To
represent the status code (302), it is recommended to use this variable.
SC_GATEWAY_TIMEOUT
public static final int SC_GATEWAY_TIMEOUT
Status code (504) indicating that the server did not receive a timely response
from the upstream server while acting as a gateway or proxy.
SC_GONE
public static final int SC_GONE
Status code (410) indicating that the resource is no longer available at the
server and no forwarding address is known. This condition SHOULD be con-
sidered permanent.
SC_HTTP_VERSION_NOT_SUPPORTED
public static final int SC_HTTP_VERSION_NOT_SUPPORTED
Status code (505) indicating that the server does not support or refuses to sup-
port the HTTP protocol version that was used in the request message.
SC_INTERNAL_SERVER_ERROR
public static final int SC_INTERNAL_SERVER_ERROR
Status code (500) indicating an error inside the HTTP server which prevented
it from fulfilling the request.
SC_LENGTH_REQUIRED
public static final int SC_LENGTH_REQUIRED
Status code (411) indicating that the request cannot be handled without a
defined Content-Length.
SC_METHOD_NOT_ALLOWED
public static final int SC_METHOD_NOT_ALLOWED
253 JAVAX.SERVLET.HTTP
Status code (405) indicating that the method specified in the Request-Line is
not allowed for the resource identified by the Request-URI.
SC_MOVED_PERMANENTLY
public static final int SC_MOVED_PERMANENTLY
Status code (301) indicating that the resource has permanently moved to a
new location, and that future references should use a new URI with their
requests.
SC_MOVED_TEMPORARILY
public static final int SC_MOVED_TEMPORARILY
Status code (302) indicating that the resource has temporarily moved to
another location, but that future references should still use the original URI to
access the resource. This definition is being retained for backwards compati-
bility. SC_FOUND is now the preferred definition.
SC_MULTIPLE_CHOICES
public static final int SC_MULTIPLE_CHOICES
Status code (300) indicating that the requested resource corresponds to any
one of a set of representations, each with its own specific location.
SC_NO_CONTENT
public static final int SC_NO_CONTENT
Status code (204) indicating that the request succeeded but that there was no
new information to return.
SC_NON_AUTHORITATIVE_INFORMATION
public static final int SC_NON_AUTHORITATIVE_INFORMATION
Status code (203) indicating that the meta information presented by the client
did not originate from the server.
SC_NOT_ACCEPTABLE
public static final int SC_NOT_ACCEPTABLE
Status code (406) indicating that the resource identified by the request is only
capable of generating response entities which have content characteristics not
acceptable according to the accept headers sent in the request.
SC_NOT_FOUND
public static final int SC_NOT_FOUND
Final Version
Servlets Using HTTP Protocol 254
Status code (404) indicating that the requested resource is not available.
SC_NOT_IMPLEMENTED
public static final int SC_NOT_IMPLEMENTED
Status code (501) indicating the HTTP server does not support the functional-
ity needed to fulfill the request.
SC_NOT_MODIFIED
public static final int SC_NOT_MODIFIED
Status code (304) indicating that a conditional GET operation found that the
resource was available and not modified.
SC_OK
public static final int SC_OK
SC_PARTIAL_CONTENT
public static final int SC_PARTIAL_CONTENT
Status code (206) indicating that the server has fulfilled the partial GET
request for the resource.
SC_PAYMENT_REQUIRED
public static final int SC_PAYMENT_REQUIRED
SC_PRECONDITION_FAILED
public static final int SC_PRECONDITION_FAILED
Status code (412) indicating that the precondition given in one or more of the
request-header fields evaluated to false when it was tested on the server.
SC_PROXY_AUTHENTICATION_REQUIRED
public static final int SC_PROXY_AUTHENTICATION_REQUIRED
Status code (407) indicating that the client MUST first authenticate itself with
the proxy.
SC_REQUEST_ENTITY_TOO_LARGE
public static final int SC_REQUEST_ENTITY_TOO_LARGE
255 JAVAX.SERVLET.HTTP
Status code (413) indicating that the server is refusing to process the request
because the request entity is larger than the server is willing or able to pro-
cess.
SC_REQUEST_TIMEOUT
public static final int SC_REQUEST_TIMEOUT
Status code (408) indicating that the client did not produce a request within
the time that the server was prepared to wait.
SC_REQUEST_URI_TOO_LONG
public static final int SC_REQUEST_URI_TOO_LONG
Status code (414) indicating that the server is refusing to service the request
because the Request-URI is longer than the server is willing to interpret.
SC_REQUESTED_RANGE_NOT_SATISFIABLE
public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE
Status code (416) indicating that the server cannot serve the requested byte
range.
SC_RESET_CONTENT
public static final int SC_RESET_CONTENT
Status code (205) indicating that the agent SHOULD reset the document view
which caused the request to be sent.
SC_SEE_OTHER
public static final int SC_SEE_OTHER
Status code (303) indicating that the response to the request can be found
under a different URI.
SC_SERVICE_UNAVAILABLE
public static final int SC_SERVICE_UNAVAILABLE
Status code (503) indicating that the HTTP server is temporarily overloaded,
and unable to handle the request.
SC_SWITCHING_PROTOCOLS
public static final int SC_SWITCHING_PROTOCOLS
Final Version
Servlets Using HTTP Protocol 256
SC_TEMPORARY_REDIRECT
public static final int SC_TEMPORARY_REDIRECT
Status code (307) indicating that the requested resource resides temporarily
under a different URI. The temporary URI SHOULD be given by the
Location field in the response.
SC_UNAUTHORIZED
public static final int SC_UNAUTHORIZED
Status code (401) indicating that the request requires HTTP authentication.
SC_UNSUPPORTED_MEDIA_TYPE
public static final int SC_UNSUPPORTED_MEDIA_TYPE
Status code (415) indicating that the server is refusing to service the request
because the entity of the request is in a format not supported by the requested
resource for the requested method.
SC_USE_PROXY
public static final int SC_USE_PROXY
Status code (305) indicating that the requested resource MUST be accessed
through the proxy given by the Location field.
SRV.15.1.5.2 Methods
addCookie(Cookie)
public void addCookie(Cookie cookie)
Adds the specified cookie to the response. This method can be called multiple
times to set more than one cookie.
Parameters:
cookie - the Cookie to return to the client
addDateHeader(String, long)
public void addDateHeader(java.lang.String name, long date)
Adds a response header with the given name and date-value. The date is spec-
ified in terms of milliseconds since the epoch. This method allows response
headers to have multiple values.
Parameters:
name - the name of the header to set
addHeader(String, String)
public void addHeader(java.lang.String name,
java.lang.String value)
Adds a response header with the given name and value. This method allows
response headers to have multiple values.
Parameters:
name - the name of the header
addIntHeader(String, int)
public void addIntHeader(java.lang.String name, int value)
Adds a response header with the given name and integer value. This method
allows response headers to have multiple values.
Parameters:
name - the name of the header
containsHeader(String)
public boolean containsHeader(java.lang.String name)
Returns a boolean indicating whether the named response header has already
been set.
Parameters:
name - the header name
Returns: true if the named response header has already been set; false
otherwise
encodeRedirectUrl(String)
public java.lang.String encodeRedirectUrl(java.lang.String url)
Final Version
Servlets Using HTTP Protocol 258
encodeRedirectURL(String)
public java.lang.String encodeRedirectURL(java.lang.String url)
Encodes the specified URL for use in the sendRedirect method or, if encod-
ing is not needed, returns the URL unchanged. The implementation of this
method includes the logic to determine whether the session ID needs to be
encoded in the URL. Because the rules for making this determination can dif-
fer from those used to decide whether to encode a normal link, this method is
separated from the encodeURL method.
All URLs sent to the HttpServletResponse.sendRedirect method should
be run through this method. Otherwise, URL rewriting cannot be used with
browsers which do not support cookies.
Parameters:
url- the url to be encoded.
Returns: the encoded URL if encoding is needed; the unchanged URL
otherwise.
See Also: sendRedirect(String), encodeUrl(String)
encodeUrl(String)
public java.lang.String encodeUrl(java.lang.String url)
encodeURL(String)
public java.lang.String encodeURL(java.lang.String url)
Encodes the specified URL by including the session ID in it, or, if encoding is
not needed, returns the URL unchanged. The implementation of this method
includes the logic to determine whether the session ID needs to be encoded in
the URL. For example, if the browser supports cookies, or session tracking is
turned off, URL encoding is unnecessary.
For robust session tracking, all URLs emitted by a servlet should be run
through this method. Otherwise, URL rewriting cannot be used with brows-
ers which do not support cookies.
259 JAVAX.SERVLET.HTTP
Parameters:
url - the url to be encoded.
sendError(int)
public void sendError(int sc)
throws IOException
Sends an error response to the client using the specified status code and clear-
ing the buffer.
If the response has already been committed, this method throws an Illegal-
StateException. After using this method, the response should be considered
to be committed and should not be written to.
Parameters:
sc - the error status code
Throws:
IOException - If an input or output exception occurs
IllegalStateException - If the response was committed before this method
call
sendError(int, String)
public void sendError(int sc, java.lang.String msg)
throws IOException
Sends an error response to the client using the specified status. The server
defaults to creating the response to look like an HTML-formatted server error
page containing the specified message, setting the content type to “text/html”,
leaving cookies and other headers unmodified. If an error-page declaration
has been made for the web application corresponding to the status code
passed in, it will be served back in preference to the suggested msg parame-
ter.
If the response has already been committed, this method throws an Illegal-
StateException. After using this method, the response should be considered
to be committed and should not be written to.
Parameters:
sc - the error status code
Final Version
Servlets Using HTTP Protocol 260
sendRedirect(String)
public void sendRedirect(java.lang.String location)
throws IOException
Sends a temporary redirect response to the client using the specified redirect
location URL. This method can accept relative URLs; the servlet container
must convert the relative URL to an absolute URL before sending the
response to the client. If the location is relative without a leading ’/’ the con-
tainer interprets it as relative to the current request URI. If the location is rel-
ative with a leading ’/’ the container interprets it as relative to the servlet
container root.
If the response has already been committed, this method throws an Illegal-
StateException. After using this method, the response should be considered
to be committed and should not be written to.
Parameters:
location - the redirect location URL
Throws:
IOException - If an input or output exception occurs
IllegalStateException - If the response was committed or if a partial URL
is given and cannot be converted into a valid URL
setDateHeader(String, long)
public void setDateHeader(java.lang.String name, long date)
Sets a response header with the given name and date-value. The date is speci-
fied in terms of milliseconds since the epoch. If the header had already been
set, the new value overwrites the previous one. The containsHeader method
can be used to test for the presence of a header before setting its value.
Parameters:
name- the name of the header to set
date - the assigned date value
See Also: containsHeader(String), addDateHeader(String, long)
setHeader(String, String)
public void setHeader(java.lang.String name,
java.lang.String value)
Sets a response header with the given name and value. If the header had
already been set, the new value overwrites the previous one. The contains-
261 JAVAX.SERVLET.HTTP
Header method can be used to test for the presence of a header before setting
its value.
Parameters:
name- the name of the header
value - the header value If it contains octet string, it should be encoded
according to RFC 2047 (http://www.ietf.org/rfc/rfc2047.txt)
See Also: containsHeader(String), addHeader(String, String)
setIntHeader(String, int)
public void setIntHeader(java.lang.String name, int value)
Sets a response header with the given name and integer value. If the header
had already been set, the new value overwrites the previous one. The
containsHeader method can be used to test for the presence of a header
before setting its value.
Parameters:
name- the name of the header
value - the assigned integer value
See Also: containsHeader(String), addIntHeader(String, int)
setStatus(int)
public void setStatus(int sc)
Sets the status code for this response. This method is used to set the return
status code when there is no error (for example, for the status codes SC_OK
or SC_MOVED_TEMPORARILY). If there is an error, and the caller wishes
to invoke an error-page defined in the web application, the sendError method
should be used instead.
The container clears the buffer and sets the Location header, preserving cook-
ies and other headers.
Parameters:
sc - the status code
setStatus(int, String)
public void setStatus(int sc, java.lang.String sm)
Final Version
Servlets Using HTTP Protocol 262
Parameters:
sc - the status code
SRV.15.1.6 HttpServletResponseWrapper
public class HttpServletResponseWrapper extends
javax.servlet.ServletResponseWrapper implements
javax.servlet.http.HttpServletResponse
All Implemented Interfaces: HttpServletResponse, javax.servlet.Servle-
tResponse
SRV.15.1.6.1 Constructors
HttpServletResponseWrapper(HttpServletResponse)
public HttpServletResponseWrapper(HttpServletResponse response)
SRV.15.1.6.2 Methods
addCookie(Cookie)
public void addCookie(Cookie cookie)
addDateHeader(String, long)
public void addDateHeader(java.lang.String name, long date)
addHeader(String, String)
public void addHeader(java.lang.String name,
java.lang.String value)
addIntHeader(String, int)
public void addIntHeader(java.lang.String name, int value)
containsHeader(String)
public boolean containsHeader(java.lang.String name)
encodeRedirectUrl(String)
public java.lang.String encodeRedirectUrl(java.lang.String url)
encodeRedirectURL(String)
public java.lang.String encodeRedirectURL(java.lang.String url)
Final Version
Servlets Using HTTP Protocol 264
encodeUrl(String)
public java.lang.String encodeUrl(java.lang.String url)
encodeURL(String)
public java.lang.String encodeURL(java.lang.String url)
sendError(int)
public void sendError(int sc)
throws IOException
Throws:
IOException
sendError(int, String)
public void sendError(int sc, java.lang.String msg)
throws IOException
The default behavior of this method is to call sendError(int sc, String msg) on
the wrapped response object.
Specified By: HttpServletResponse.sendError(int, String) in
interface HttpServletResponse
Throws:
IOException
sendRedirect(String)
public void sendRedirect(java.lang.String location)
throws IOException
Throws:
IOException
setDateHeader(String, long)
public void setDateHeader(java.lang.String name, long date)
setHeader(String, String)
public void setHeader(java.lang.String name,
java.lang.String value)
setIntHeader(String, int)
public void setIntHeader(java.lang.String name, int value)
setStatus(int)
public void setStatus(int sc)
The default behavior of this method is to call setStatus(int sc) on the wrapped
response object.
Specified By: HttpServletResponse.setStatus(int) in interface
HttpServletResponse
setStatus(int, String)
public void setStatus(int sc, java.lang.String sm)
The default behavior of this method is to call setStatus(int sc, String sm) on
the wrapped response object.
Final Version
Servlets Using HTTP Protocol 266
SRV.15.1.7 HttpSession
public interface HttpSession
Provides a way to identify a user across more than one page request or visit to a
Web site and to store information about that user.
The servlet container uses this interface to create a session between an HTTP cli-
ent and an HTTP server. The session persists for a specified time period, across
more than one connection or page request from the user. A session usually corre-
sponds to one user, who may visit a site many times. The server can maintain a
session in many ways such as using cookies or rewriting URLs.
This interface allows servlets to
•View and manipulate information about a session, such as the session identi-
fier, creation time, and last accessed time
•Bind objects to sessions, allowing user information to persist across multiple
user connections
SRV.15.1.7.1 Methods
getAttribute(String)
public java.lang.Object getAttribute(java.lang.String name)
Returns the object bound with the specified name in this session, or null if
no object is bound under the name.
Parameters:
name- a string specifying the name of the object
Returns: the object with the specified name
Throws:
IllegalStateException - if this method is called on an invalidated session
getAttributeNames()
public java.util.Enumeration getAttributeNames()
getCreationTime()
public long getCreationTime()
Returns the time when this session was created, measured in milliseconds
since midnight January 1, 1970 GMT.
Returns: a long specifying when this session was created, expressed in
milliseconds since 1/1/1970 GMT
Throws:
IllegalStateException - if this method is called on an invalidated session
getId()
public java.lang.String getId()
Returns a string containing the unique identifier assigned to this session. The
identifier is assigned by the servlet container and is implementation depen-
dent.
Returns: a string specifying the identifier assigned to this session
getLastAccessedTime()
Final Version
Servlets Using HTTP Protocol 268
Returns the last time the client sent a request associated with this session, as
the number of milliseconds since midnight January 1, 1970 GMT, and
marked by the time the container received the request.
Actions that your application takes, such as getting or setting a value associ-
ated with the session, do not affect the access time.
Returns: a long representing the last time the client sent a request
associated with this session, expressed in milliseconds since 1/1/1970 GMT
getMaxInactiveInterval()
public int getMaxInactiveInterval()
Returns the maximum time interval, in seconds, that the servlet container will
keep this session open between client accesses. After this interval, the servlet
container will invalidate the session. The maximum time interval can be set
with the setMaxInactiveInterval method. A negative time indicates the
session should never timeout.
Returns: an integer specifying the number of seconds this session remains
open between client requests
See Also: setMaxInactiveInterval(int)
getServletContext()
public javax.servlet.ServletContext getServletContext()
getSessionContext()
public HttpSessionContext getSessionContext()
getValue(String)
public java.lang.Object getValue(java.lang.String name)
Parameters:
name - a string specifying the name of the object
269 JAVAX.SERVLET.HTTP
getValueNames()
public java.lang.String[] getValueNames()
Returns: an array of String objects specifying the names of all the objects
bound to this session
Throws:
IllegalStateException - if this method is called on an invalidated session
invalidate()
public void invalidate()
isNew()
public boolean isNew()
Returns true if the client does not yet know about the session or if the client
chooses not to join the session. For example, if the server used only cookie-
based sessions, and the client had disabled the use of cookies, then a session
would be new on each request.
Returns: true if the server has created a session, but the client has not yet
joined
Throws:
IllegalStateException - if this method is called on an already invalidated
session
putValue(String, Object)
public void putValue(java.lang.String name, java.lang.Object value)
Parameters:
name - the name to which the object is bound; cannot be null
Final Version
Servlets Using HTTP Protocol 270
removeAttribute(String)
public void removeAttribute(java.lang.String name)
Removes the object bound with the specified name from this session. If the
session does not have an object bound with the specified name, this method
does nothing.
After this method executes, and if the object implements HttpSession-
BindingListener, the container calls HttpSessionBinding-
Listener.valueUnbound. The container then notifies any
HttpSessionAttributeListeners in the web application.
Parameters:
name- the name of the object to remove from this session
Throws:
IllegalStateException - if this method is called on an invalidated session
removeValue(String)
public void removeValue(java.lang.String name)
Parameters:
name - the name of the object to remove from this session
Throws:
IllegalStateException - if this method is called on an invalidated session
setAttribute(String, Object)
public void setAttribute(java.lang.String name,
java.lang.Object value)
Binds an object to this session, using the name specified. If an object of the
same name is already bound to the session, the object is replaced.
After this method executes, and if the new object implements HttpSession-
BindingListener, the container calls HttpSessionBinding-
Listener.valueBound. The container then notifies any
HttpSessionAttributeListeners in the web application.
271 JAVAX.SERVLET.HTTP
If an object was already bound to this session of this name that implements
HttpSessionBindingListener, its HttpSessionBindingListener.value-
Unbound method is called.
If the value passed in is null, this has the same effect as calling remove-
Attribute().
Parameters:
name - the name to which the object is bound; cannot be null
setMaxInactiveInterval(int)
public void setMaxInactiveInterval(int interval)
Specifies the time, in seconds, between client requests before the servlet con-
tainer will invalidate this session. A negative time indicates the session
should never timeout.
Parameters:
interval - An integer specifying the number of seconds
SRV.15.1.8 HttpSessionActivationListener
public interface HttpSessionActivationListener extends
java.util.EventListener
All Superinterfaces: java.util.EventListener
Objects that are bound to a session may listen to container events notifying them
that sessions will be passivated and that session will be activated. A container that
migrates session between VMs or persists sessions is required to notify all
attributes bound to sessions implementing HttpSessionActivationListener.
Since: 2.3
SRV.15.1.8.1 Methods
sessionDidActivate(HttpSessionEvent)
public void sessionDidActivate(HttpSessionEvent se)
sessionWillPassivate(HttpSessionEvent)
public void sessionWillPassivate(HttpSessionEvent se)
Final Version
Servlets Using HTTP Protocol 272
SRV.15.1.9 HttpSessionAttributeListener
public interface HttpSessionAttributeListener extends
java.util.EventListener
All Superinterfaces: java.util.EventListener
This listener interface can be implemented in order to get notifications of
changes to the attribute lists of sessions within this web application.
Since: v 2.3
SRV.15.1.9.1 Methods
attributeAdded(HttpSessionBindingEvent)
public void attributeAdded(HttpSessionBindingEvent se)
Notification that an attribute has been added to a session. Called after the
attribute is added.
attributeRemoved(HttpSessionBindingEvent)
public void attributeRemoved(HttpSessionBindingEvent se)
Notification that an attribute has been removed from a session. Called after
the attribute is removed.
attributeReplaced(HttpSessionBindingEvent)
public void attributeReplaced(HttpSessionBindingEvent se)
Notification that an attribute has been replaced in a session. Called after the
attribute is replaced.
SRV.15.1.10 HttpSessionBindingEvent
public class HttpSessionBindingEvent extends
javax.servlet.http.HttpSessionEvent
All Implemented Interfaces: java.io.Serializable
Events of this type are either sent to an object that implements
HttpSessionBindingListener when it is bound or unbound from a session, or
to a HttpSessionAttributeListener that has been configured in the deploy-
ment descriptor when any attribute is bound, unbound or replaced in a session.
SRV.15.1.10.1 Constructors
HttpSessionBindingEvent(HttpSession, String)
public HttpSessionBindingEvent(HttpSession session,
java.lang.String name)
Parameters:
session- the session to which the object is bound or unbound
name - the name with which the object is bound or unbound
See Also: getName(), getSession()
Parameters:
session- the session to which the object is bound or unbound
name - the name with which the object is bound or unbound
See Also: getName(), getSession()
SRV.15.1.10.2 Methods
getName()
public java.lang.String getName()
Returns the name with which the attribute is bound to or unbound from the
session.
Returns: a string specifying the name with which the object is bound to or
unbound from the session
getSession()
public HttpSession getSession()
Final Version
Servlets Using HTTP Protocol 274
getValue()
public java.lang.Object getValue()
Returns the value of the attribute that has been added, removed or replaced. If
the attribute was added (or bound), this is the value of the attribute. If the
attribute was removed (or unbound), this is the value of the removed attribute.
If the attribute was replaced, this is the old value of the attribute.
Since: 2.3
SRV.15.1.11 HttpSessionBindingListener
public interface HttpSessionBindingListener extends
java.util.EventListener
All Superinterfaces: java.util.EventListener
Causes an object to be notified when it is bound to or unbound from a session.
The object is notified by an HttpSessionBindingEvent object. This may be as a
result of a servlet programmer explicitly unbinding an attribute from a session,
due to a session being invalidated, or due to a session timing out.
See Also: HttpSession, HttpSessionBindingEvent
SRV.15.1.11.1 Methods
valueBound(HttpSessionBindingEvent)
public void valueBound(HttpSessionBindingEvent event)
Notifies the object that it is being bound to a session and identifies the ses-
sion.
Parameters:
event - the event that identifies the session
valueUnbound(HttpSessionBindingEvent)
public void valueUnbound(HttpSessionBindingEvent event)
Notifies the object that it is being unbound from a session and identifies the
session.
Parameters:
event - the event that identifies the session
275 JAVAX.SERVLET.HTTP
SRV.15.1.12 HttpSessionContext
public interface HttpSessionContext
Deprecated. As of Java(tm) Servlet API 2.1 for security reasons, with no replace-
ment. This interface will be removed in a future version of this API.
See Also: HttpSession, HttpSessionBindingEvent, HttpSessionBind-
ingListener
SRV.15.1.12.1 Methods
getIds()
public java.util.Enumeration getIds()
getSession(String)
public HttpSession getSession(java.lang.String sessionId)
SRV.15.1.13 HttpSessionEvent
public class HttpSessionEvent extends java.util.EventObject
All Implemented Interfaces: java.io.Serializable
Direct Known Subclasses: HttpSessionBindingEvent
This is the class representing event notifications for changes to sessions within a
web application.
Since: v 2.3
SRV.15.1.13.1 Constructors
HttpSessionEvent(HttpSession)
public HttpSessionEvent(HttpSession source)
Final Version
Servlets Using HTTP Protocol 276
SRV.15.1.13.2 Methods
getSession()
public HttpSession getSession()
SRV.15.1.14 HttpSessionListener
public interface HttpSessionListener extends java.util.EventListener
All Superinterfaces: java.util.EventListener
Implementations of this interface are notified of changes to the list of active ses-
sions in a web application. To receive notification events, the implementation
class must be configured in the deployment descriptor for the web application.
Since: v 2.3
See Also: HttpSessionEvent
SRV.15.1.14.1 Methods
sessionCreated(HttpSessionEvent)
public void sessionCreated(HttpSessionEvent se)
sessionDestroyed(HttpSessionEvent)
public void sessionDestroyed(HttpSessionEvent se)
SRV.15.1.15 HttpUtils
public class HttpUtils
Deprecated. As of Java(tm) Servlet API 2.3. These methods were only useful
with the default encoding and have been moved to the request interfaces.
SRV.15.1.15.1 Constructors
HttpUtils()
277 JAVAX.SERVLET.HTTP
public HttpUtils()
SRV.15.1.15.2 Methods
getRequestURL(HttpServletRequest)
public static java.lang.StringBuffer
getRequestURL(HttpServletRequest req)
Reconstructs the URL the client used to make the request, using information
in the HttpServletRequest object. The returned URL contains a protocol,
server name, port number, and server path, but it does not include query
string parameters.
Because this method returns a StringBuffer, not a string, you can modify
the URL easily, for example, to append query parameters.
This method is useful for creating redirect messages and for reporting errors.
Parameters:
req- a HttpServletRequest object containing the client’s request
Returns: a StringBuffer object containing the reconstructed URL
parsePostData(int, ServletInputStream)
public static java.util.Hashtable parsePostData(int len,
javax.servlet.ServletInputStream in)
Parses data from an HTML form that the client sends to the server using the
HTTP POST method and the application/x-www-form-urlencoded MIME
type.
The data sent by the POST method contains key-value pairs. A key can
appear more than once in the POST data with different values. However, the
key appears only once in the hashtable, with its value being an array of
strings containing the multiple values sent by the POST method.
The keys and values in the hashtable are stored in their decoded form, so any
+ characters are converted to spaces, and characters sent in hexadecimal nota-
tion (like %xx) are converted to ASCII characters.
Parameters:
len - an integer specifying the length, in characters, of the
ServletInputStream object that is also passed to this method
in - the ServletInputStream object that contains the data sent from the
client
Returns: a HashTable object built from the parsed key-value pairs
Final Version
Servlets Using HTTP Protocol 278
Throws:
IllegalArgumentException - if the data sent by the POST method is invalid
parseQueryString(String)
public static java.util.Hashtable parseQueryString(java.lang.String
s)
Parses a query string passed from the client to the server and builds a Hash-
Table object with key-value pairs. The query string should be in the form of a
string packaged by the GET or POST method, that is, it should have key-
value pairs in the form key=value, with each pair separated from the next by a
& character.
A key can appear more than once in the query string with different values.
However, the key appears only once in the hashtable, with its value being an
array of strings containing the multiple values sent by the query string.
The keys and values in the hashtable are stored in their decoded form, so any
+ characters are converted to spaces, and characters sent in hexadecimal nota-
tion (like %xx) are converted to ASCII characters.
Parameters:
s - a string containing the query to be parsed
Final Version
Changes since version
2.3
This document is the Proposed Final Draft version of the Java Servlet 2.4 Specifica-
tion developed under the Java Community ProcessSM (JCP).
The order of sections in this chapter was reversed in Proposed Final Draft
version3.
280
281 CHANGES SINCE VERSION 2.3
Final Version
PFD2: Changes in this document since Proposed Final Draft 282
• J2SE 1.3 is the minimum version of the underlying Java platform with which
servlet containers must be built (1.2)
• Clarification of ServletResponse.setBufferSize method (5.1)
• Clarification of ServletRequest.getServerName and getServerPort (14.2.16.1)
• Clarification of Internationalization (5.4, 14.2.22)
• Clarification of the redirection of the welcome file (9.10)
• Clarification of ServletContextListener.contextInitialized (14.2.12.1)
• Clarification of HttpServletRequest.getRequestedSessionId - making it clear
that it returns the session ID specified by the client (15.1.3.2)
• Clarification of the class loader for the extensions - the class loader must be
the same for all web applications within the same JVM (9.7.1)
• Clarification of the case when ServletRequestListener throws an unhandled
exception (10.6, 14.2.20)
• Clarification of the scope of ServletRequestListener (14.2.20)
• Add the description about the case when the container has a caching mecha-
nism (1.2)
• Validating deployment descriptor against the schema is required for J2EE
containers (13.2)
• Sub elements under <web-app> can be in an arbitrary order (13.2)
• One example of the container’s rejecting the web application was removed
due to the contradiction with SRV.11.1 (9.5)
• url-patternType is changed from j2ee:string to xsd:string (13)
• The sub-elements under <web-app> in deployment descriptor can be in the ar-
bitrary order (13)
• The container must inform a developer with a descriptive error message when
deployment descriptor file contains an illegal character or multiple elements
of <session-config>, <jsp-config>, or <login-config> (13)
• Extensibility of deployment descriptor was removed (13)
283 CHANGES SINCE VERSION 2.3
• Section SRV.1.6 added - describing the compatibility issue with the previous
version of this specification (1.6)
• New attributes are added in RequestDispatcher.forward method (8.4.2)
• New methods in ServletRequest interface and ServletRequestWrapper
(14.2.16.1)
• The interface SingleThreadModel was deprecated ((2.2.1, 2.3.3.1, 14.2.24)
• Change the name of the method ServletRequestEvent.getRequest to Servle-
tRequestEvent.getServletRequest (14.2.19.2)
• Clarification of the “request” to access to WEB-INF directory (9.5)
• Clarification of the behavior of ServletRequest.setAttribute - change “value”
to “object” in “If the value passed in is null,” (14.2.16.1)
• Fix the inconsistency between this specification and HttpServletRequest, get-
ServletPath - the return value starts with “/” (15.1.3.2)
• Fix the inconsistency between this specification and HttpServletRequest.get-
PathInfo - the return value starts with “/” (15.1.3.2)
• Fix the inconsistency between this specification and HttpServletRequest.get-
PathTranslated - add the case when the container cannot translate the path
(15.1.3.2)
• Allow HttpServletRequest.getAuthType to return not only pre-defined four
authentication scheme but also the container-specific scheme (15.1.3.2)
• Change the behavior of ttpSessionListener.sessionDestroyed to notify before
the session is invalidated (15.1.14.1)
• Fix the wrong status code of 403 to 404 (9.5, 9.6)
• Element “taglib” should be “jsp-config” (13.2)
• Fix the version number of JSP specification to 2.0
Fix the wrong formats (5.5, 6.2.5, 12.8.3, 12.9)
Final Version
Changes in this document since version 2.3 284
The Java Servlet 2.3 Specification was the last released version of the servlet specifi-
cation. The following changes have been made since version 2.3:
Final Version
A P P E N D I X SRV.A
Deployment Descriptor
Version 2.2
This appendix defines the deployment descriptor for version 2.2. All web containers
are required to support web applications using the 2.2 deployment descriptor.
All valid web application deployment descriptors must contain the following
DOCTYPE declaration:
SRV.A.2 DTD
The DTD that follows defines the XML grammar for a web application deployment
descriptor.
<!--
The web-app element is the root of the deployment descriptor for a
web application
-->
286
287
<!--
The icon element contains a small-icon and a large-icon element
which specify the location within the web application for a small and
large image used to represent the web application in a GUI tool. At a
minimum, tools must accept GIF and JPEG format images.
-->
<!--
The small-icon element contains the location within the web
application of a file containing a small (16x16 pixel) icon image.
-->
<!--
The large-icon element contains the location within the web
application of a file containing a large (32x32 pixel) icon image.
-->
<!--
The display-name element contains a short name that is intended
to be displayed by GUI tools
-->
<!--
The description element is used to provide descriptive text about
the parent element.
-->
<!--
The distributable element, by its presence in a web application
deployment descriptor, indicates that this web application is
Final Version
288
<!--
The context-param element contains the declaration of a web
application’s servlet context initialization parameters.
-->
<!--
The param-name element contains the name of a parameter.
-->
<!--
The param-value element contains the value of a parameter.
-->
<!--
The servlet element contains the declarative data of a
servlet.
If a jsp-file is specified and the load-on-startup element is
present, then the JSP should be precompiled and loaded.
-->
<!--
The servlet-name element contains the canonical name of the
servlet.
-->
<!--
The servlet-class element contains the fully qualified class name
289
of the servlet.
-->
<!--
The jsp-file element contains the full path to a JSP file within
the web application.
-->
<!--
The init-param element contains a name/value pair as an
initialization param of the servlet
-->
<!--
The load-on-startup element indicates that this servlet should be
loaded on the startup of the web application.
The optional contents of these element must be a positive integer
indicating the order in which the servlet should be loaded.
Lower integers are loaded before higher integers.
If no value is specified, or if the value specified is not a positive
integer, the container is free to load it at any time in the startup
sequence.
-->
<!--
The servlet-mapping element defines a mapping between a servlet and
a url pattern
-->
<!--
The url-pattern element contains the url pattern of the
mapping. Must follow the rules specified in Section 10 of the Servlet
API Specification.
-->
Final Version
290
<!--
The session-config element defines the session parameters for this
web application.
-->
<!--
The session-timeout element defines the default session timeout
interval for all sessions created in this web application.
The specified timeout must be expressed in a whole number of minutes.
-->
<!--
The mime-mapping element defines a mapping between an extension and
a mime type.
-->
<!--
The extension element contains a string describing an
extension. example: "txt"
-->
<!--
The mime-type element contains a defined mime type. example: "text/
plain"
-->
<!--
The welcome-file-list contains an ordered list of welcome files
elements.
-->
<!--
The welcome-file element contains file name to use as a default
welcome file, such as index.html
-->
<!--
The taglib element is used to describe a JSP tag library.
-->
<!--
The taglib-uri element describes a URI, relative to the location of
the web.xml document, identifying a Tag Library used in the Web
Application.
-->
<!--
the taglib-location element contains the location (as a resource
relative to the root of the web application) where to find the Tag
Libary Description file for the tag library.
-->
<!--
The error-page element contains a mapping between an error code or
exception type to the path of a resource in the web application
-->
<!--
The error-code contains an HTTP error code, ex: 404
-->
<!--
The exception type contains a fully qualified class name of a Java
exception type.
-->
Final Version
292
<!--
The location element contains the location of the resource in the
web application
-->
<!--
The resource-ref element contains a declaration of a Web
Application’s reference to an external resource.
-->
<!--
The res-ref-name element specifies the name of the resource factory
reference name.
-->
<!--
The res-type element specifies the (Java class) type of the data
source.
-->
<!--
The res-auth element indicates whether the application component
code performs resource signon programmatically or whether the
container signs onto the resource based on the principle mapping
information supplied by the deployer.
<!--
The security-constraint element is used to associate security
constraints with one or more web resource collections
-->
293
<!--
The web-resource-collection element is used to identify a subset of
the resources and HTTP methods on those resources within a web
application to which a security constraint applies.
If no HTTP methods are specified, then the security constraint
applies to all HTTP methods.
-->
<!--
The web-resource-name contains the name of this web resource
collection
-->
<!--
The http-method contains an HTTP method (GET | POST |...)
-->
<!--
The user-data-constraint element is used to indicate how data
communicated between the client and container should be protected
-->
<!--
The transport-guarantee element specifies that the communication
between client and server should be NONE, INTEGRAL, or CONFIDENTIAL.
NONE means that the application does not require any transport
guarantees.
A value of INTEGRAL means that the application requires that the data
sent between the client and server be sent in such a way that it
can’t be changed in transit.
CONFIDENTIAL means that the application requires that the data be
transmitted in a fashion that prevents other entities from observing
the contents of the transmission.
Final Version
294
<!--
The auth-constraint element indicates the user roles that should be
permitted access to this resource collection.
The role used here must appear in a security-role-ref element.
-->
<!--
The role-name element contains the name of a security role.
-->
<!--
The login-config element is used to configure the authentication
method that should be used, the realm name that should be used for
this application, and the attributes that are needed by the form
login mechanism.
-->
<!--
The realm name element specifies the realm name to use in HTTP Basic
authorization
-->
<!--
The form-login-config element specifies the login and error pages
that should be used in form based login.
If form based authentication is not used, these elements are ignored.
-->
<!--
The form-login-page element defines the location in the web app where
the page that can be used for login can be found
-->
<!--
The form-error-page element defines the location in the web app where
the error page that is displayed when login is not successful can be
found
-->
<!--
The auth-method element is used to configure the authentication
mechanism for the web application.
As a prerequisite to gaining access to any web resources which are
protected by an authorization constraint, a user must have
mechanism.
Legal values for this element are "BASIC", "DIGEST", "FORM", or
"CLIENT-CERT".
-->
<!--
The security-role element contains the declaration of a security role
which is used in the security-constraints placed on the web
application.
-->
<!--
The role-name element contains the name of a role. This element must
contain a non-empty string.
-->
<!--
The role-link element is used to link a security role reference to
a defined security role.
Final Version
296
The role-link element must contain the name of one of the security
roles defined in the security-role elements.
-->
<!--
The env-entry element contains the declaration of an application’s
environment entry.
This element is required to be honored on in J2EE compliant servlet
containers.
-->
<!--
The env-entry-name contains the name of an application’s environment
entry
-->
<!--
The env-entry-value element contains the value of an application’s
environment entry
-->
<!--
The env-entry-type element contains the fully qualified Java type of
the environment entry value that is expected by the application
code.
The following are the legal values of env-entry-type:
java.lang.Boolean, java.lang.String, java.lang.Integer,
java.lang.Double, java.lang.Float.
-->
<!--
The ejb-ref element is used to declare a reference to an enterprise
bean.
-->
297
<!--
The ejb-ref-name element contains the name of an EJB
reference. This is the JNDI name that the servlet code uses to get a
reference to the enterprise bean.
-->
<!--
The ejb-ref-type element contains the expected java class type of
the referenced EJB.
-->
<!--
The ejb-home element contains the fully qualified name of the EJB’s
home interface
-->
<!--
The ejb-remote element contains the fully qualified name of the EJB’s
remote interface
-->
<!--
The ejb-link element is used in the ejb-ref element to specify that
an EJB reference is linked to an EJB in an encompassing Java2
Enterprise Edition (J2EE) application package.
The value of the ejb-link element must be the ejb-name of and EJB in
the J2EE application package.
-->
<!--
The ID mechanism is to allow tools to easily make tool-specific
references to the elements of the deployment descriptor.
Final Version
298
Final Version
A P P E N D I X SRV.B
Deployment Descriptor
Version 2.3
This appendix defines the deployment descriptor for version 2.3. All web containers
are required to support web applications using the 2.3 deployment descriptor.
All valid web application deployment descriptors for version 2.3 of this
specification must contain the following DOCTYPE declaration:
SRV.B.2 DTD
The DTD that follows defines the XML grammar for a web application deployment
descriptor.
<!--
The web-app element is the root of the deployment descriptor for
a web application.
-->
300
301
<!--
The auth-constraint element indicates the user roles that should
be permitted access to this resource collection. The role-name
used here must either correspond to the role-name of one of the
security-role elements defined for this web application, or be
the specially reserved role-name "*" that is a compact syntax for
indicating all roles in the web application. If both "*" and
rolenames appear, the container interprets this as all roles.
If no roles are defined, no user is allowed access to the portion of
the web application described by the containing security-constraint.
The container matches role names case sensitively when determining
access.
<!--
The auth-method element is used to configure the authentication
mechanism for the web application. As a prerequisite to gaining
access to any web resources which are protected by an authorization
constraint, a user must have authenticated using the configured
mechanism. Legal values for this element are "BASIC", "DIGEST",
"FORM", or "CLIENT-CERT".
<!--
The context-param element contains the declaration of a web
application’s servlet context initialization parameters.
Final Version
302
<!--
The description element is used to provide text describing the parent
element. The description element should include any information that
the web application war file producer wants to provide to the
consumer of the web application war file (i.e., to the Deployer).
Typically, the tools used by the web application war file consumer
will display the description when processing the parent element that
contains the description.
<!--
The display-name element contains a short name that is intended to be
displayed by tools. The display name need not be unique.
Example:
<!--
The distributable element, by its presence in a web application
deployment descriptor, indicates that this web application is
programmed appropriately to be deployed into a distributed servlet
container
<!--
The ejb-link element is used in the ejb-ref or ejb-local-ref
303
Examples:
<ejb-link>EmployeeRecord</ejb-link>
<ejb-link>../products/product.jar#ProductEJB</ejb-link>
-->
<!--
The ejb-local-ref element is used for the declaration of a reference
to an enterprise bean’s local home. The declaration consists of:
- an optional description
- the EJB reference name used in the code of the web application
that’s referencing the enterprise bean
- the expected type of the referenced enterprise bean
- the expected local home and local interfaces of the referenced
enterprise bean
- optional ejb-link information, used to specify the referenced
enterprise bean
<!--
Final Version
304
- an optional description
- the EJB reference name used in the code of
the web application that’s referencing the enterprise bean
- the expected type of the referenced enterprise bean
- the expected home and remote interfaces of the referenced
enterprise bean
- optional ejb-link information, used to specify the referenced
enterprise bean
<!--
The ejb-ref-name element contains the name of an EJB reference. The
EJB reference is an entry in the web application’s environment and is
relative to the java:comp/env context. The name must be unique
within the web application.
Example:
<ejb-ref-name>ejb/Payroll</ejb-ref-name>
-->
<!--
The ejb-ref-type element contains the expected type of the
referenced enterprise bean.
<ejb-ref-type>Entity</ejb-ref-type>
<ejb-ref-type>Session</ejb-ref-type>
-->
<!--
The env-entry element contains the declaration of a web application’s
environment entry. The declaration consists of an optional
description, the name of the environment entry, and an optional
value. If a value is not specified, one must be supplied
during deployment.
-->
<!--
The env-entry-name element contains the name of a web applications’s
environment entry. The name is a JNDI name relative to the
java:comp/env context. The name must be unique within a web
application.
Example:
<env-entry-name>minAmount</env-entry-name>
<!--
The env-entry-type element contains the fully-qualified Java type of
the environment entry value that is expected by the web application’s
code.
java.lang.Boolean
java.lang.Byte
java.lang.Character
java.lang.String
java.lang.Short
java.lang.Integer
java.lang.Long
java.lang.Float
Final Version
306
java.lang.Double
<!--
The env-entry-value element contains the value of a web application’s
environment entry. The value must be a String that is valid for the
constructor of the specified type that takes a single String
parameter, or for java.lang.Character, a single character.
Example:
<env-entry-value>100.00</env-entry-value>
<!--
The error-code contains an HTTP error code, ex: 404
<!--
The error-page element contains a mapping between an error code
or exception type to the path of a resource in the web application
<!--
The exception type contains a fully qualified class name of a
Java exception type.
<!--
The extension element contains a string describing an
extension. example: "txt"
<!--
Declares a filter in the web application. The filter is mapped to
either a servlet or a URL pattern in the filter-mapping element,
using the filter-name value to reference. Filters can access the
initialization parameters declared in the deployment descriptor at
runtime via the FilterConfig interface.
<!--
The fully qualified classname of the filter.
<!--
Declaration of the filter mappings in this web application. The
container uses the filter-mapping declarations to decide which
filters to apply to a request, and in what order. The container
matches the request URI to a Servlet in the normal way. To determine
which filters to apply it matches filter-mapping declarations either
on servlet-name, or on url-pattern for each filter-mapping element,
depending on which style is used. The order in which filters are
invoked is the order in which filter-mapping declarations that match
a request URI for a servlet appear in the list of filter-mapping
elements.The filter-name value must be the value of the <filter-name>
sub-elements of one of the <filter> declarations in the deployment
descriptor.
Final Version
308
<!--
The logical name of the filter. This name is used to map the filter.
Each filter name is unique within the web application.
<!--
The form-error-page element defines the location in the web app
where the error page that is displayed when login is not successful
can be found. The path begins with a leading / and is interpreted
relative to the root of the WAR.
<!--
The form-login-config element specifies the login and error pages
that should be used in form based login. If form based authentication
is not used, these elements are ignored.
<!--
The form-login-page element defines the location in the web app
where the page that can be used for login can be found. The path
begins with a leading / and is interpreted relative to the root of
the WAR.
<!--
The home element contains the fully-qualified name of the enterprise
bean’s home interface.
Example:
<home>com.aardvark.payroll.PayrollHome</home>
-->
<!--
The http-method contains an HTTP method (GET | POST |...).
<!--
The icon element contains small-icon and large-icon elements that
specify the file names for small and a large GIF or JPEG icon images
used to represent the parent element in a GUI tool.
<!--
The init-param element contains a name/value pair as an
initialization param of the servlet
<!--
The jsp-file element contains the full path to a JSP file within
the web application beginning with a ‘/’.
Final Version
310
<!--
The large-icon element contains the name of a file
containing a large (32 x 32) icon image. The file
name is a relative path within the web application’s
war file.
Example:
<large-icon>employee-service-icon32x32.jpg</large-icon>
-->
<!--
The listener element indicates the deployment properties for a web
application listener bean.
<!--
The listener-class element declares a class in the application must
be registered as a web application listener bean. The value is the
fully qualified classname of the listener class.
<!--
The load-on-startup element indicates that this servlet should be
311
<!--
<!--
The local-home element contains the fully-qualified name of the
enterprise bean’s local home interface.
<!--
The location element contains the location of the resource in the web
application relative to the root of the web application. The value of
the location must have a leading ‘/’.
Final Version
312
<!--
The login-config element is used to configure the authentication
method that should be used, the realm name that should be used for
this application, and the attributes that are needed by the form
login mechanism.
<!--
The mime-mapping element defines a mapping between an extension
and a mime type.
<!--
The mime-type element contains a defined mime type. example:
"text/plain"
<!--
The param-name element contains the name of a parameter. Each
parameter name must be unique in the web application.
<!--
The param-value element contains the value of a parameter.
<!--
The realm name element specifies the realm name to use in HTTP
Basic authorization.
<!--
The remote element contains the fully-qualified name of the
enterprise bean’s remote interface.
Example:
<remote>com.wombat.empl.EmployeeService</remote>
-->
<!--
The res-auth element specifies whether the web application code signs
on programmatically to the resource manager, or whether the Container
will sign on to the resource manager on behalf of the web
application. In the latter case, the Container uses information that
is supplied by the Deployer.
<res-auth>Application</res-auth>
<res-auth>Container</res-auth>
<!--
The res-ref-name element specifies the name of a resource manager
Final Version
314
<!--
The res-sharing-scope element specifies whether connections obtained
through the given resource manager connection factory reference can
be
shared. The value of this element, if specified, must be one of the
two following:
<res-sharing-scope>Shareable</res-sharing-scope>
<res-sharing-scope>Unshareable</res-sharing-scope>
<!--
The res-type element specifies the type of the data source. The type
is specified by the fully qualified Java language class or interface
expected to be implemented by the data source.
<!--
The resource-env-ref element contains a declaration of a web
application’s reference to an administered object associated with a
resource in the web application’s environment. It consists of an
optional description, the resource environment reference name, and
an indication of the resource environment reference type expected by
the web application code.
Example:
<resource-env-ref>
<resource-env-ref-name>jms/StockQueue</resource-env-ref-name>
<resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
</resource-env-ref>
-->
resource-env-ref-type)>
<!--
The resource-env-ref-name element specifies the name of a resource
environment reference; its value is the environment entry name used
in the web application code. The name is a JNDI name relative to the
java:comp/env context and must be unique within a web application.
<!--
The resource-env-ref-type element specifies the type of a resource
environment reference. It is the fully qualified name of a Java
language class or interface.
<!--
The resource-ref element contains a declaration of a web
application’s reference to an external resource. It consists of an
optional description, the resource manager connection factory
reference name, the indication of the resource manager connection
factory type expected by the web application code, the type of
authentication (Application or Container), and an optional
specification of the shareability of connections obtained from the
resource (Shareable or Unshareable).
Final Version
316
Example:
<resource-ref>
<res-ref-name>jdbc/EmployeeAppDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
-->
<!--
The role-link element is a reference to a defined security role. The
role-link element must contain the name of one of the security roles
defined in the security-role elements.
<!--
The role-name element contains the name of a security role.
The name must conform to the lexical rules for an NMTOKEN.
<!--
The run-as element specifies the run-as identity to be used for the
execution of the web application. It contains an optional
description, and
the name of a security role.
<!--
317
<!--
The security-role element contains the definition of a security
role. The definition consists of an optional description of the
security role, and the security role name.
Example:
<security-role>
<description>
This role includes all employees who are authorized
to access the employee service application.
</description>
<role-name>employee</role-name>
</security-role>
-->
<!--
The security-role-ref element contains the declaration of a security
role reference in the web application’s code. The declaration
consists
of an optional description, the security role name used in the code,
and an optional link to a security role. If the security role is not
specified, the Deployer must choose an appropriate security role.
The value of the role-name element must be the String used as the
parameter to the EJBContext.isCallerInRole(String roleName) method
or the HttpServletRequest.isUserInRole(String role) method.
-->
Final Version
318
<!--
The servlet element contains the declarative data of a
servlet. If a jsp-file is specified and the load-on-startup element
is present, then the JSP should be precompiled and loaded.
<!--
The servlet-class element contains the fully qualified class name
of the servlet.
<!--
The servlet-mapping element defines a mapping between a servlet
and a url pattern
<!--
The servlet-name element contains the canonical name of the
servlet. Each servlet name is unique within the web application.
<!--
The session-config element defines the session parameters for
this web application.
319
<!--
The session-timeout element defines the default session timeout
interval for all sessions created in this web application. The
specified timeout must be expressed in a whole number of minutes.
If the timeout is 0 or less, the container ensures the default
behaviour of sessions is never to time out.
<!--
The small-icon element contains the name of a file
containing a small (16 x 16) icon image. The file
name is a relative path within the web application’s
war file.
Example:
<small-icon>employee-service-icon16x16.jpg</small-icon>
-->
<!--
The taglib element is used to describe a JSP tag library.
<!--
Final Version
320
<!--
The taglib-uri element describes a URI, relative to the location
of the web.xml document, identifying a Tag Library used in the Web
Application.
<!--
The transport-guarantee element specifies that the communication
between client and server should be NONE, INTEGRAL, or
CONFIDENTIAL. NONE means that the application does not require any
transport guarantees. A value of INTEGRAL means that the application
requires that the data sent between the client and server be sent in
such a way that it can’t be changed in transit. CONFIDENTIAL means
that the application requires that the data be transmitted in a
fashion that prevents other entities from observing the contents of
the transmission. In most cases, the presence of the INTEGRAL or
CONFIDENTIAL flag will indicate that the use of SSL is required.
<!--
The url-pattern element contains the url pattern of the mapping. Must
follow the rules specified in Section 11.2 of the Servlet API
Specification.
<!--
The user-data-constraint element is used to indicate how data
communicated between the client and container should be protected.
<!--
The web-resource-collection element is used to identify a subset
of the resources and HTTP methods on those resources within a web
application to which a security constraint applies. If no HTTP
methods are specified, then the security constraint applies to all
HTTP methods.
<!--
The web-resource-name contains the name of this web resource
collection.
<!--
The welcome-file element contains file name to use as a default
welcome file, such as index.html
<!--
The welcome-file-list contains an ordered list of welcome files
elements.
Final Version
322
<!--
The ID mechanism is to allow tools that produce additional deployment
information (i.e., information beyond the standard deployment
descriptor information) to store the non-standard information in a
separate file, and easily refer from these tool-specific files to the
information in the standard deployment descriptor.
Tools are not allowed to add the non-standard information into the
standard deployment descriptor.
-->
Final Version
324
Final Version
A P P E N D I X SRV.C
Glossary
Deployer The Deployer takes one or more web application archive files or
other directory structures provided by an Application Developer and deploys
the application into a specific operational environment. The operational envi-
ronment includes a specific servlet container and web server. The Deployer
must resolve all the external dependencies declared by the developer. To per-
form his role, the deployer uses tools provided by the Servlet Container Pro-
vider.
326
327 CHAPTER
security policy domain The scope over which security policies are defined
and enforced by a security administrator of the security service. A security
policy domain is also sometimes referred to as a realm.
security technology domain The scope over which the same security mecha-
nism, such as Kerberos, is used to enforce a security policy. Multiple security
policy domains can exist within a single technology domain.
also responsible for overseeing the well-being of the deployed web applica-
tions at run time.
This specification does not define the contracts for system management and
administration. The administrator typically uses runtime monitoring and man-
agement tools provided by the Container Provider and server vendors to
accomplish these tasks.
uniform resource locator (URL) A compact string representation of
resources available via the network. Once the resource represented by a URL
has been accessed, various operations may be performed on that resource.1 A
URL is a type of uniform resource identifier (URI). URLs are typically of the
form:
<protocol>//<servername>/<resource>
http[s]://<servername>[:port]/<url-path>[?<query-string>]
For example:
http://java.sun.com/products/servlet/index.html
https://javashop.sun.com/purchase
All compatible servlet containers must accept a web application and perform
a deployment of its contents into their runtime. This may mean that a con-
tainer can run the application directly from a web application archive file or it
may mean that it will move the contents of a web application into the appro-
priate locations for that particular container.
1.
See RFC 1738
329 CHAPTER
web application archive A single file that contains all of the components of a
web application. This archive file is created by using standard JAR tools
which allow any or all of the web components to be signed.
Web application archive files are identified by the .war extension. A new
extension is used instead of .jar because that extension is reserved for files
which contain a set of class files and that can be placed in the classpath or
double clicked using a GUI to launch an application. As the contents of a web
application archive are not suitable for such use, a new extension was in order.
web application, distributable A web application that is written so that
it can be deployed in a web container distributed across multiple Java
virtual machines running on the same host or different hosts. The
deployment descriptor for such an application uses the distributable
element.
330