Skip to main content

What Is Spring Boot And Why Spring Boot?

What Is Spring Boot And Why Spring Boot?


  • Spring Boot is not a framework, it is a way to create any kind of spring application with minimal or zero configurations.
  • Spring Boot is a Spring framework module that provides the RAD (Rapid Application Development) feature to the Spring framework.
  • Spring Boot is a way by which you can bootstrap or quickly create Any spring application.

Official Definition of Spring Boot:

  • Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”

Springboot = (Spring + Boot) :




As per the diagram add the Embedded HTTP server (Tomcat, Jetty, and Weblogic) and remove XML configuration in the spring framework then it becomes spring boot, here spring is a Java Enterprise framework and boot is bootstrap.

Why Spring Boot?

  • Develop Spring Application Faster
  • Avoid Boiler Plate Code
  • Convention over configuration
  • Embedded Tomcat Embedded Tomcat Embedded Tomcat

How to Download, install, and configure Maven on your computer



Comments

Popular posts from this blog

How To Run Spring Project After Generate From Spring Initializer

How To Run Spring Project After Generate From Spring Initializer After Generating project from Spring initializer copy generated zip project on any folder like have created a folder in c:\intellijworkspace here paste zip project and extract it as shown below. After that open command prompt and go inside the project directory as shown below           After that inside project folder type command mvn, clean install and press enter as shown below After that project build process started as shown below Finally, Build Process Completed with success message as shown below After Build Successfully to run project type command mvn spring-boot :run as shown below Finally, project up successfully on port 8080 as shown below. To check project status open browser and type localhost:8080 it will display an error page that indicates project run successfully as shown below Now Enjoy Spring Boot ...