public class ContextAssetRequestHandler extends Object implements AssetRequestHandler
Constructor and Description |
---|
ContextAssetRequestHandler(ResourceStreamer resourceStreamer,
Resource rootContextResource) |
Modifier and Type | Method and Description |
---|---|
boolean |
handleAssetRequest(Request request,
Response response,
String extraPath)
Given a request targeted (via the handler id) to the specific handler, process the request.
|
public ContextAssetRequestHandler(ResourceStreamer resourceStreamer, Resource rootContextResource)
public boolean handleAssetRequest(Request request, Response response, String extraPath) throws IOException
AssetRequestHandler
Response.getOutputStream(String)
) or an error response
(via Response.sendError(int, String)
). It is the handler's responsibility to allow
for client-side caching (possibly sending an HttpServletResponse.SC_NOT_MODIFIED
response).
The handler should return true if it provided a response. If the handler returns false, this indicates that the
extra path did not identify a known asset (virtual or otherwise) and the AssetDispatcher service should send a
HttpServletResponse.SC_NOT_FOUND
response.
handleAssetRequest
in interface AssetRequestHandler
request
- incoming asset requestresponse
- used to send a response to clientextraPath
- additional path to identify the specific assetIOException
Copyright © 2003-2012 The Apache Software Foundation.