Section 5.1 Learning Handler API

The org.mortbay.jetty.Handler interface provides Jetty’s core of content generation or manipulation. Classes that implement this interface are used to coordinate requests, filter requests, and generate content.

The core API of the Handler interface is:

public void handle(String target, HttpServletRequest request, 
HttpservletResponse response, int dispatch) throws IOException, ServletException;

  • Currently 2.99/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
  Flag Inappropriate Content 0 comments