DefaultResponse channel = new DefaultResponse(httpServletRequest, httpServletResponse, restController);
ProcessInfo processInfo = new ProcessInfo();
try {
RestRequest restRequest = new DefaultRestRequest(httpServletRequest);
HttpServer.setHttpHolder(new HttpHolder(restRequest, channel));
Tuple<Class<ApplicationController>, Method> tuple = restController.getHandler(restRequest);
if (tuple != null) {
processInfo.method = tuple.v2();
}
for (HttpStartProcessor httpStartProcessor : httpStartProcessorList) {