Interface | Description |
---|---|
RequestHandler |
A generic handler of HttpServletRequests. very similar to an HttpServlet, but
the handleRequest() method returns a boolean indicating if the RequestHandler
returned data to the user.
|
ShutdownListener |
Interface representing a desire to be notified when the containing
ServletContext is being destroyed.
|
Class | Description |
---|---|
AbstractRequestHandler |
Abstract RequestHandler implementation which performs the minimal behavior
for self registration with a RequestMapper, requiring subclasses to implement
only handleRequest().
|
BeanNameRegistrar |
Helper static methods to implement registration of a RequestHandler with a
RequestMapper, based on the beanName() method.
|
PortMapper |
Class which allows semi-efficient translation of requests on a specific local
port to a RequestHandler object.
|
RequestFilter |
Top-Level integration point between a series of RequestHandler mappings and a
generic ServletContext.
|
RequestHandlerContext |
A simple composition of the RequestHandler which an HttpServletRequest was
mapped to, and the path prefix which indicated the RequestHandler.
|
RequestMapper |
This class maintains a mapping of RequestHandlers and ShutDownListeners, to
allow (somewhat) efficient mapping and delegation of incoming requests to
the appropriate RequestHandler.
|
SpringReader |
Single static method to read a Spring XML configuration, extract
RequestHandlers, and return a RequestMapper which delegates requests to
those RequestHandlers.
|
StaticFileRequestHandler |
RequestHandler implementation which allows serving of static files, and
.jsp files within a ServletContext.
|
Copyright © 2005–2015 IIPC. All rights reserved.