|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.servlet.GenericServlet javax.servlet.http.HttpServlet org.apache.catalina.servlets.DefaultServlet
public class DefaultServlet
The default resource-serving servlet for most web applications, used to serve static resources such as HTML pages and images.
This servlet is intended to be mapped to / e.g.:
<servlet-mapping> <servlet-name>default</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
It can be mapped to sub-paths, however in all cases resources are served
from the web appplication resource root using the full path from the root
of the web application context.
e.g. given a web application structure:
/context /images tomcat2.jpg /static /images tomcat.jpg
... and a servlet mapping that maps only /static/*
to the default servlet:
<servlet-mapping> <servlet-name>default</servlet-name> <url-pattern>/static/*</url-pattern> </servlet-mapping>
Then a request to /context/static/images/tomcat.jpg
will succeed
while a request to /context/images/tomcat2.jpg
will fail.
Nested Class Summary | |
---|---|
protected static class |
DefaultServlet.Range
|
Field Summary | |
---|---|
protected static int |
BUFFER_SIZE
Size of file transfer buffer in bytes. |
protected String |
contextXsltFile
Allow customized directory listing per context. |
protected int |
debug
The debugging detail level for this servlet. |
protected String |
fileEncoding
File encoding to be used when reading static files. |
protected static ArrayList<DefaultServlet.Range> |
FULL
Full range marker. |
protected String |
globalXsltFile
Allow customized directory listing per instance. |
protected int |
input
The input buffer size to use when serving resources. |
protected boolean |
listings
Should we generate directory listings? |
protected String |
localXsltFile
Allow customized directory listing per directory. |
protected static String |
mimeSeparation
MIME multipart separation string |
protected int |
output
The output buffer size to use when serving resources. |
protected String |
readmeFile
Allow a readme file to be included. |
protected boolean |
readOnly
Read only flag. |
protected ProxyDirContext |
resources
Proxy directory context. |
protected static String |
RESOURCES_JNDI_NAME
JNDI resources name. |
protected int |
sendfileSize
Minimum size for sendfile usage in bytes. |
protected static StringManager |
sm
The string manager for this package. |
protected static URLEncoder |
urlEncoder
Array containing the safe characters set. |
protected boolean |
useAcceptRanges
Should the Accept-Ranges: bytes header be send with static resources? |
Constructor Summary | |
---|---|
DefaultServlet()
|
Method Summary | |
---|---|
protected boolean |
checkIfHeaders(HttpServletRequest request,
HttpServletResponse response,
ResourceAttributes resourceAttributes)
Check if the conditions specified in the optional If headers are satisfied. |
protected boolean |
checkIfMatch(HttpServletRequest request,
HttpServletResponse response,
ResourceAttributes resourceAttributes)
Check if the if-match condition is satisfied. |
protected boolean |
checkIfModifiedSince(HttpServletRequest request,
HttpServletResponse response,
ResourceAttributes resourceAttributes)
Check if the if-modified-since condition is satisfied. |
protected boolean |
checkIfNoneMatch(HttpServletRequest request,
HttpServletResponse response,
ResourceAttributes resourceAttributes)
Check if the if-none-match condition is satisfied. |
protected boolean |
checkIfUnmodifiedSince(HttpServletRequest request,
HttpServletResponse response,
ResourceAttributes resourceAttributes)
Check if the if-unmodified-since condition is satisfied. |
protected boolean |
checkSendfile(HttpServletRequest request,
HttpServletResponse response,
CacheEntry entry,
long length,
DefaultServlet.Range range)
Check if sendfile can be used. |
protected void |
copy(CacheEntry cacheEntry,
InputStream is,
PrintWriter writer)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
protected void |
copy(CacheEntry cacheEntry,
InputStream is,
ServletOutputStream ostream)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
protected void |
copy(CacheEntry cacheEntry,
ServletOutputStream ostream,
DefaultServlet.Range range)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
protected void |
copy(CacheEntry cacheEntry,
ServletOutputStream ostream,
Iterator<DefaultServlet.Range> ranges,
String contentType)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
protected IOException |
copyRange(InputStream istream,
ServletOutputStream ostream)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
protected IOException |
copyRange(InputStream istream,
ServletOutputStream ostream,
long start,
long end)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
protected IOException |
copyRange(Reader reader,
PrintWriter writer)
Copy the contents of the specified input stream to the specified output stream, and ensure that both streams are closed before returning (even in the face of an exception). |
void |
destroy()
Finalize this servlet. |
protected void |
displaySize(StringBuilder buf,
int filesize)
Deprecated. Will be removed in Tomcat 8.0.x. Replaced by renderSize(long) |
protected void |
doDelete(HttpServletRequest req,
HttpServletResponse resp)
Process a DELETE request for the specified resource. |
protected void |
doGet(HttpServletRequest request,
HttpServletResponse response)
Process a GET request for the specified resource. |
protected void |
doHead(HttpServletRequest request,
HttpServletResponse response)
Process a HEAD request for the specified resource. |
protected void |
doOptions(HttpServletRequest req,
HttpServletResponse resp)
Override default implementation to ensure that TRACE is correctly handled. |
protected void |
doPost(HttpServletRequest request,
HttpServletResponse response)
Process a POST request for the specified resource. |
protected void |
doPut(HttpServletRequest req,
HttpServletResponse resp)
Process a PUT request for the specified resource. |
protected File |
executePartialPut(HttpServletRequest req,
DefaultServlet.Range range,
String path)
Handle a partial PUT. |
protected InputStream |
findXsltInputStream(DirContext directory)
Return the xsl template inputstream (if possible) |
protected String |
getPathPrefix(HttpServletRequest request)
Determines the appropriate path to prepend resources with when generating directory listings. |
protected String |
getReadme(DirContext directory)
Get the readme file as a string. |
protected String |
getRelativePath(HttpServletRequest request)
Return the relative path associated with this servlet. |
void |
init()
Initialize this servlet. |
protected DefaultServlet.Range |
parseContentRange(HttpServletRequest request,
HttpServletResponse response)
Parse the content-range header. |
protected ArrayList<DefaultServlet.Range> |
parseRange(HttpServletRequest request,
HttpServletResponse response,
ResourceAttributes resourceAttributes)
Parse the range header. |
protected InputStream |
render(String contextPath,
CacheEntry cacheEntry)
Decide which way to render. |
protected InputStream |
renderHtml(String contextPath,
CacheEntry cacheEntry)
Return an InputStream to an HTML representation of the contents of this directory. |
protected String |
renderSize(long size)
Render the specified file size (in bytes). |
protected InputStream |
renderXml(String contextPath,
CacheEntry cacheEntry,
InputStream xsltInputStream)
Return an InputStream to an HTML representation of the contents of this directory. |
protected String |
rewriteUrl(String path)
URL rewriter. |
protected void |
serveResource(HttpServletRequest request,
HttpServletResponse response,
boolean content)
Serve the specified resource, optionally including the data content. |
Methods inherited from class javax.servlet.http.HttpServlet |
---|
doTrace, getLastModified, service, service |
Methods inherited from class javax.servlet.GenericServlet |
---|
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected int debug
protected int input
protected boolean listings
protected boolean readOnly
protected int output
protected static final URLEncoder urlEncoder
protected String localXsltFile
protected String contextXsltFile
protected String globalXsltFile
protected String readmeFile
protected transient ProxyDirContext resources
protected String fileEncoding
protected int sendfileSize
protected boolean useAcceptRanges
protected static final ArrayList<DefaultServlet.Range> FULL
protected static final String mimeSeparation
protected static final String RESOURCES_JNDI_NAME
protected static final StringManager sm
protected static final int BUFFER_SIZE
Constructor Detail |
---|
public DefaultServlet()
Method Detail |
---|
public void destroy()
destroy
in interface Servlet
destroy
in class GenericServlet
public void init() throws ServletException
init
in class GenericServlet
ServletException
- if an exception occurs that interrupts the servlet's
normal operationprotected String getRelativePath(HttpServletRequest request)
request
- The servlet request we are processingprotected String getPathPrefix(HttpServletRequest request)
getRelativePath(HttpServletRequest)
this will change.
request
- the request to determine the path for
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
doGet
in class HttpServlet
request
- The servlet request we are processingresponse
- The servlet response we are creating
IOException
- if an input/output error occurs
ServletException
- if a servlet-specified error occursServletResponse.setContentType(java.lang.String)
protected void doHead(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
doHead
in class HttpServlet
request
- The servlet request we are processingresponse
- The servlet response we are creating
IOException
- if an input/output error occurs
ServletException
- if a servlet-specified error occursprotected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
doOptions
in class HttpServlet
req
- the HttpServletRequest
object that
contains the request the client made of
the servletresp
- the HttpServletResponse
object that
contains the response the servlet returns
to the client
IOException
- if an input or output error occurs
while the servlet is handling the
OPTIONS request
ServletException
- if the request for the
OPTIONS cannot be handledprotected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
doPost
in class HttpServlet
request
- The servlet request we are processingresponse
- The servlet response we are creating
IOException
- if an input/output error occurs
ServletException
- if a servlet-specified error occursServletOutputStream
,
ServletResponse.setContentType(java.lang.String)
protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
doPut
in class HttpServlet
req
- The servlet request we are processingresp
- The servlet response we are creating
IOException
- if an input/output error occurs
ServletException
- if a servlet-specified error occursprotected File executePartialPut(HttpServletRequest req, DefaultServlet.Range range, String path) throws IOException
IOException
protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
doDelete
in class HttpServlet
req
- The servlet request we are processingresp
- The servlet response we are creating
IOException
- if an input/output error occurs
ServletException
- if a servlet-specified error occursprotected boolean checkIfHeaders(HttpServletRequest request, HttpServletResponse response, ResourceAttributes resourceAttributes) throws IOException
request
- The servlet request we are processingresponse
- The servlet response we are creatingresourceAttributes
- The resource information
IOException
protected String rewriteUrl(String path)
path
- Path which has to be rewritten@Deprecated protected void displaySize(StringBuilder buf, int filesize)
renderSize(long)
protected void serveResource(HttpServletRequest request, HttpServletResponse response, boolean content) throws IOException, ServletException
request
- The servlet request we are processingresponse
- The servlet response we are creatingcontent
- Should the content be included?
IOException
- if an input/output error occurs
ServletException
- if a servlet-specified error occursprotected DefaultServlet.Range parseContentRange(HttpServletRequest request, HttpServletResponse response) throws IOException
request
- The servlet request we are processingresponse
- The servlet response we are creating
IOException
protected ArrayList<DefaultServlet.Range> parseRange(HttpServletRequest request, HttpServletResponse response, ResourceAttributes resourceAttributes) throws IOException
request
- The servlet request we are processingresponse
- The servlet response we are creating
IOException
protected InputStream render(String contextPath, CacheEntry cacheEntry) throws IOException, ServletException
IOException
ServletException
protected InputStream renderXml(String contextPath, CacheEntry cacheEntry, InputStream xsltInputStream) throws IOException, ServletException
contextPath
- Context path to which our internal paths are
relative
IOException
ServletException
protected InputStream renderHtml(String contextPath, CacheEntry cacheEntry) throws IOException, ServletException
contextPath
- Context path to which our internal paths are
relative
IOException
ServletException
protected String renderSize(long size)
size
- File size (in bytes)protected String getReadme(DirContext directory) throws IOException
IOException
protected InputStream findXsltInputStream(DirContext directory) throws IOException
IOException
protected boolean checkSendfile(HttpServletRequest request, HttpServletResponse response, CacheEntry entry, long length, DefaultServlet.Range range)
protected boolean checkIfMatch(HttpServletRequest request, HttpServletResponse response, ResourceAttributes resourceAttributes) throws IOException
request
- The servlet request we are processingresponse
- The servlet response we are creatingresourceAttributes
- File object
IOException
protected boolean checkIfModifiedSince(HttpServletRequest request, HttpServletResponse response, ResourceAttributes resourceAttributes)
request
- The servlet request we are processingresponse
- The servlet response we are creatingresourceAttributes
- File object
protected boolean checkIfNoneMatch(HttpServletRequest request, HttpServletResponse response, ResourceAttributes resourceAttributes) throws IOException
request
- The servlet request we are processingresponse
- The servlet response we are creatingresourceAttributes
- File object
IOException
protected boolean checkIfUnmodifiedSince(HttpServletRequest request, HttpServletResponse response, ResourceAttributes resourceAttributes) throws IOException
request
- The servlet request we are processingresponse
- The servlet response we are creatingresourceAttributes
- File object
IOException
protected void copy(CacheEntry cacheEntry, InputStream is, ServletOutputStream ostream) throws IOException
cacheEntry
- The cache entry for the source resourceis
- The input stream to read the source resource fromostream
- The output stream to write to
IOException
- if an input/output error occursprotected void copy(CacheEntry cacheEntry, InputStream is, PrintWriter writer) throws IOException
cacheEntry
- The cache entry for the source resourceis
- The input stream to read the source resource fromwriter
- The writer to write to
IOException
- if an input/output error occursprotected void copy(CacheEntry cacheEntry, ServletOutputStream ostream, DefaultServlet.Range range) throws IOException
cacheEntry
- The cache entry for the source resourceostream
- The output stream to write torange
- Range the client wanted to retrieve
IOException
- if an input/output error occursprotected void copy(CacheEntry cacheEntry, ServletOutputStream ostream, Iterator<DefaultServlet.Range> ranges, String contentType) throws IOException
cacheEntry
- The cache entry for the source resourceostream
- The output stream to write toranges
- Enumeration of the ranges the client wanted to retrievecontentType
- Content type of the resource
IOException
- if an input/output error occursprotected IOException copyRange(InputStream istream, ServletOutputStream ostream)
istream
- The input stream to read fromostream
- The output stream to write to
protected IOException copyRange(Reader reader, PrintWriter writer)
reader
- The reader to read fromwriter
- The writer to write to
protected IOException copyRange(InputStream istream, ServletOutputStream ostream, long start, long end)
istream
- The input stream to read fromostream
- The output stream to write tostart
- Start of the range which will be copiedend
- End of the range which will be copied
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |