If you’ve recently come to Java enterprise development with Spring framework or Spring platform, you probably heard the terms Spring framework and Spring Boot. How do they differ? Or do they refer to the same thing? You’re probably quite confused, right?
So in this article, I’d like to help you clear out the confusion of Spring framework vs. Spring Boot, what they are, how they differ… which I think it would be helpful for you, in terms of better understand.
Firstly, let’s understand what Spring framework and Spring Boot are actually about.
What is Spring framework?
You know, Spring framework is the world’s most popular Java framework. It provides comprehensive programming & configuration model for modern Java-based enterprise apps.
Spring framework provides infrastructural support at application-level, so teams can focus on application-level business logic.
Spring framework is the core of Spring platform.
What is Spring Boot?
Spring Boot is a way that helps developers get started with Spring framework with minimum effort. Spring Boot makes it easy to create stand-alone, production-grade Spring-based apps.
Spring Boot is a project of Spring platform, not a replacement of Spring framework. Developers use Spring Boot to save time and increase productivity.
The key features of Spring framework are:
Whereas, the following are key features of Spring Boot:
The following picture visualizes the relation between Spring framework and Spring Boot in an application:
A Spring application could be running on an external servlet container or embedded server such as Apache Tomcat. Spring Boot is built on Spring framework’s core. The application’s code is built on Spring Boot and Spring framework’s features such as dependency injection, AOP, ORM, DAO, Spring MVC…
As you have seen, Spring Boot is just a way that eases development of applications based on Spring framework. In other words, it complements to Spring framework and Spring projects development. To summary:
Learn more: What is Spring Boot actually about? (and what it is not)