Spring MVC

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/8

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

9 Terms

1
New cards
In a MVC process flow, when the request gets to what first item in the mvc flow?
In a MVC process flow, when the request gets to what first item in the mvc flow?
Dispatcher Servlet
2
New cards
What happens after the Dispatcher Servlet receives the request?
What happens after the Dispatcher Servlet receives the request?
It gives the task to handler mapper
3
New cards
<p>What does handlerMapping do after receiving a task from Dispatcher serverlet?</p>

What does handlerMapping do after receiving a task from Dispatcher serverlet?

  1. This maps the url request to the controller

  2. returns a selected handler and controller back to the dispatch servlet to process the request.

4
New cards
returns a selected handler and controller back to the dispatch servlet
returns a selected handler and controller back to the dispatch servlet
5
New cards
What does the Handler Adapter do ?
What does the Handler Adapter do ?
Calls the business logic of the controller
6
New cards
What does the Controller do?
What does the Controller do?
It is the interface between the view and the business logic
7
New cards
Does the Dispatcher Servlet have a task that resolves the View corresponding to the View name to View Resolver.? True or false
Does the Dispatcher Servlet have a task that resolves the View corresponding to the View name to View Resolver.? True or false
True
8
New cards
Does the Dispatcher dispatch rendering process to return view?True or False
Does the Dispatcher dispatch rendering process to return view?True or False
True
9
New cards
View renders Model data and returns what?
View renders Model data and returns what?
Response