hm.initialize(context);
}
public void handle(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
RequestHandler handler = findHandler(req);
handler.initialize(context);
handler.handle(req, resp);
}
/**
* Find matching request handler.