HTTP request handling

Report a typo

Choose the right order of the Spring MVC HTTP request handling stages.

Put the items in the correct order
The Controller takes the request, processes it, sets the model data and returns the view name.
DispatcherServlet receives HTTP requests to be processed.
DispatcherServlet calls the appropriate controller for the request.
DispatcherServlet passes the model data to the View and returns it to the requester to be rendered in the browser.
DispatcherServlet gets the required view based on the name returned from the controller.
___

Create a free account to access the full topic