|
file, filter, mime, servlet or context.
If not specified, file is the default type.
File is used when translating a URI to a specific physical file.
A Filter is a Servlet that is used when a reference is made to a
resource which ends with a specific file extension.
A MIME is a Servlet that is used when a reference is made to a
resource that returns content of the specified MIME type. MIME
definitions required that Servlet Chaining be enabled.
A Servlet is a Java Class that is invoked when a request matches a
specific URI.
A Servlet Context is used to maintain shared values across multiple
Servlets associated by a common base URI.
|