public ControllerMethod translate(MutableRequest request) {
String controllerName = request.getRequestedUri();
logger.debug("trying to access {}", controllerName);
HttpMethod method = getHttpMethod(request, controllerName);
ControllerMethod controller = router.parse(controllerName, method, request);
logger.debug("found controller {}", controller);
return controller;
}