Skip to content

Instantly share code, notes, and snippets.

@nobodyiam
Last active May 7, 2016 07:47
Show Gist options
  • Save nobodyiam/4701e83e0a118167098eba63644b15e0 to your computer and use it in GitHub Desktop.
Save nobodyiam/4701e83e0a118167098eba63644b15e0 to your computer and use it in GitHub Desktop.
public class DispatcherServlet extends FrameworkServlet {
protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
...
// Actually invoke the handler.
mv = ha.handle(processedRequest, response, mappedHandler.getHandler());
if (asyncManager.isConcurrentHandlingStarted()) {
return;
}
processDispatchResult(processedRequest, response, mappedHandler, mv, dispatchException);
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment