What is the relationship and difference between MVC and web MVC, SpringMVC and Spring web MVC?

for example:
what is the relationship and difference between MVC and web MVC, SpringMVC and Spring web MVC?

Mar.15,2021

MVC is an architectural hierarchical mode

web MVC refers to MVC practiced in the web field, because the view layer of the web domain cannot be equated with the view layer of the native application

.

Spring MVC and Spring Web MVC are the same thing, which is a module in Spring Framework .

on the Spring Framework introduction page is Spring MVC , but click on the specific description page using Spring Web MVC , there is a sentence in the document:

The formal name "Spring Web MVC" comes from the name of its source module spring-webmvc but it is more commonly known as "Spring MVC".

so the official name is Spring Web MVC , but most people like to call it Spring MVC .

Menu