org.eclipse.jetty.server.handler
Class RequestLogHandler
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.AggregateLifeCycle
org.eclipse.jetty.server.handler.AbstractHandler
org.eclipse.jetty.server.handler.AbstractHandlerContainer
org.eclipse.jetty.server.handler.HandlerWrapper
org.eclipse.jetty.server.handler.RequestLogHandler
- All Implemented Interfaces:
- Handler, HandlerContainer, Destroyable, Dumpable, LifeCycle
public class RequestLogHandler
- extends HandlerWrapper
RequestLogHandler.
This handler can be used to wrap an individual context for context logging.
- Apache XBean:
Method Summary |
protected void |
doStart()
Start the managed lifecycle beans in the order they were added. |
protected void |
doStop()
Stop the joined lifecycle beans in the reverse order they were added. |
RequestLog |
getRequestLog()
|
void |
handle(java.lang.String target,
Request baseRequest,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handle a request. |
void |
setRequestLog(RequestLog requestLog)
|
void |
setServer(Server server)
|
Methods inherited from class org.eclipse.jetty.util.component.AggregateLifeCycle |
addBean, addBean, contains, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, isManaged, manage, removeBean, removeBeans, unmanage |
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle |
addLifeCycleListener, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RequestLogHandler
public RequestLogHandler()
handle
public void handle(java.lang.String target,
Request baseRequest,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.io.IOException,
javax.servlet.ServletException
- Description copied from interface:
Handler
- Handle a request.
- Specified by:
handle
in interface Handler
- Overrides:
handle
in class HandlerWrapper
- Parameters:
target
- The target of the request - either a URI or a name.baseRequest
- The original unwrapped request object.request
- The request either as the Request
object or a wrapper of that request. The AbstractHttpConnection.getCurrentConnection()
method can be used access the Request object if required.response
- The response as the Response
object or a wrapper of that request. The AbstractHttpConnection.getCurrentConnection()
method can be used access the Response object if required.
- Throws:
java.io.IOException
javax.servlet.ServletException
setRequestLog
public void setRequestLog(RequestLog requestLog)
setServer
public void setServer(Server server)
- Specified by:
setServer
in interface Handler
- Overrides:
setServer
in class HandlerWrapper
getRequestLog
public RequestLog getRequestLog()
doStart
protected void doStart()
throws java.lang.Exception
- Description copied from class:
AggregateLifeCycle
- Start the managed lifecycle beans in the order they were added.
- Overrides:
doStart
in class HandlerWrapper
- Throws:
java.lang.Exception
- See Also:
AbstractLifeCycle.doStart()
doStop
protected void doStop()
throws java.lang.Exception
- Description copied from class:
AggregateLifeCycle
- Stop the joined lifecycle beans in the reverse order they were added.
- Overrides:
doStop
in class HandlerWrapper
- Throws:
java.lang.Exception
- See Also:
AbstractLifeCycle.doStart()
Copyright © 2012. All Rights Reserved.