String uri = req.getPathInfo();
PostHandler handler = this.handlerMap.get(uri);
if (handler == null) {
resp.sendError(404);
} else {
handler.handlePost(req, resp);
}
}
/**
* Initializes the mapping between path info and Renderable components.
* It is implemented by inspecting all bindings of the injector.