Spring Boot vs Spring MVC

Spring Boot vs Spring MVC

Spring Boot
  1. Spring boot is a module of Spring Framework.
  2. With Spring Boot,we can build spring powered application with minimal configuration.
  3. Auto configuration is done.
  4. Its avoids boiler plate code and wraps the dependencies together in a single unit.
  5. It reduces development time and increase productivity. 
Spring MVC
  1. Spring MVC defines a model view controller based web framework.
  2. With Spring MVC we have  to import the required library in our project.
  3. Required to build configuration manually.
  4. Dependencies are separated.
  5. It requires more time for development.
In this post, hope you all understand the major difference between Spring Boot and Spring MVC.

Comments

Popular posts from this blog

System Requirements For Spring Boot

Creating a Spring Boot project with Spring Initializer

Creating Simple Spring Boot Application Using STS In Eclipse