Last active
May 7, 2016 07:47
-
-
Save nobodyiam/4701e83e0a118167098eba63644b15e0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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