Introduction - If you have any usage issues, please Google them yourself
Spring Framework MVC implementation
1) Spring MVC architecture
C controller part: DispatcherServlet, Controller
M model part: ModelAndView, ModelMap, entity classes
V view section: JSP, spring tags
2) understand the Spring MVC workflow
a. client browser sends an HTTP request to arrive DispatcherServlet controller
b.DispatcherServlet controller calls HandlerMapping map processor, upon request, call the appropriate Controller components.
c. perform the contract in the Controller method, call the Service or DAO components to complete the request processing. Return a ModelAndView object
d. controller calls ViewResolver view resolvers, view resources defined View