what is the difference between Spring and Spring MVC framework

后端 未结 7 611
后悔当初
后悔当初 2021-01-30 01:21

I am new to Spring. Can any one let me know what is the difference between Spring and Spring MVC Framework ?

7条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 02:05

    MVC is a Spring module. You use it for designing web applications. MVC in Spring implements the front controller design pattern. In your web.xml you'll define a single servlet (DispatcherServlet) and all your requests will pass through it and will be attended by Controllers you will define (@Controller).

提交回复
热议问题