Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the difference between Spring and Spring MVC framework

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

like image 671
Naveen Avatar asked Apr 27 '14 07:04

Naveen


People also ask

Is Spring MVC and Spring framework same?

Spring MVC is considered to be the model view controller-based web framework under the Spring framework. For building a Spring-powered framework, default configurations are provided by it. For building web applications, ready-to-use features are provided by it.

Is Spring MVC part of Spring framework?

For web applications Spring provides Spring MVC framework which is a widely used module of spring which is used to create scalable web applications.

Is spring the same as Spring framework?

In the Spring framework, you have to build configurations manually. In Spring Boot there are default configurations that allow faster bootstrapping. Spring Framework requires a number of dependencies to create a web app. Spring Boot, on the other hand, can get an application working with just one dependency.

What is Spring MVC used for?

What Is Spring MVC? Spring MVC is a library within the Spring framework that simplifies handling HTTP requests and responses. It's built on the Servlet API and is an essential component of the Spring Framework.


1 Answers

Spring is a big framework, that contains a lot of components. One of these components is Spring MVC - it is a component that lets you implement your web application according to the model-view-controller design pattern.

like image 102
Michal Krasny Avatar answered Oct 14 '22 23:10

Michal Krasny