...
- handle(HttpConnection) - called when a thread is allocated to a HttpConnection.
- handle(target,request,response,dispatch)
- called to dispatch a request to the server.
Handler
The Jetty server maintains a tree of Handlers that are mostly implemented as interceptors: Context, Session, Security and RequestLogare all implemented as interceptors based on WrappedHandler. These handlers add their behaviour as an aspect before passing the request down the chain of handlers. Additional
behaviour may be added by:
...