Spring Boot vs Spring MVC

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