org.eclipse.jetty.server.handler
类 DefaultHandler
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.DefaultHandler
- 所有已实现的接口:
- Handler, Destroyable, Dumpable, LifeCycle
public class DefaultHandler
- extends AbstractHandler
Default Handler.
This handle will deal with unhandled requests in the server.
For requests for favicon.ico, the Jetty icon is served.
For reqests to '/' a 404 with a list of known contexts is served.
For all other requests a normal 404 is served.
TODO Implement OPTIONS and TRACE methods for the server.
| 从类 org.eclipse.jetty.util.component.AggregateLifeCycle 继承的方法 |
addBean, addBean, contains, dump, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, isManaged, manage, removeBean, removeBeans, unmanage |
| 从类 org.eclipse.jetty.util.component.AbstractLifeCycle 继承的方法 |
addLifeCycleListener, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop |
| 从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultHandler
public DefaultHandler()
handle
public void handle(String target,
Request baseRequest,
HttpServletRequest request,
HttpServletResponse response)
throws IOException,
ServletException
- 从接口
Handler 复制的描述
- Handle a request.
- 参数:
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.
- 抛出:
IOException
ServletException
getServeIcon
public boolean getServeIcon()
- 返回:
- Returns true if the handle can server the jetty favicon.ico
setServeIcon
public void setServeIcon(boolean serveIcon)
- 参数:
serveIcon - true if the handle can server the jetty favicon.ico
getShowContexts
public boolean getShowContexts()
setShowContexts
public void setShowContexts(boolean show)
Copyright © 2013. All Rights Reserved.