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 Display Welcome Message On Spring Boot Project

How To Display Welcome Message On Spring Boot Project  Normally Whenever we configure and start our first spring boot project and check in localhost:8080 it will display Whitelabel Error Page because  there is no explicit mapping found nor any index.html file found in the static folder, Today we will learn how to display a welcome message instead of Whitelabel Error Page. Now open your project in any IDE like IntelliJ etc. Go Static Folder as right Click and select Html File as shown Below Give name file to index.html  Type any welcome message  Restart the server  Open Web Browser and type localhost:8080 and see a welcome message How To Display Welcome Message In Spring Boot To Watch Video Click Here

Safety Tips To Access Internet Over Browser

Safety Tips To Access Internet Over Browser जब कभी हम इन्टरनेट एक्सेस करते है ,या तो किसी सिक्योर नेटवर्क से करते है |  या इनसिक्योर  नेटवर्क से करते है |जब भी हम इन्टरनेट का उपयोग करते है  हमें ये भी नहीं पता होता की Browser like Chrome,Mozilla, Safari,internet explorer हमारी सीक्रेट  जानकारी (जैसे की हमने किस वेबसाइट को एक्सेस किया ,कितनी बार एक्सेस किया etc)को history के तौर पर स्टोर कर लेता है| कभी कभी तो यह userid और password  को भी स्टोर कर लेता है| जिसका बुत आसानी से मिसयूज (Misuse) किया जा सकता है| See The Example below how Google chrome Maintain history - आप थोड़ी सी सावधानी से इन चीजों से अपने आप को सेफ कर सकते है |  अगर आप इन्टरनेट एक्सेस कर रहे है और आप चाहते की browser आपकी Activity और आपके userid ,password को स्टोर न करे इसके लिए आपको  browser के  incognito mode का use करना है Browser के   incognito mode को use करने के लिए आपको  बस दो स्टेप फॉलो  करना है Open your brow...

How To Create Spring Boot Project From Spring Initializer

How To Create Spring  Boot Project From Spring Initializer To Create Spring boot project from spring initializer following steps are required Open Web Browser and type  https://start.spring.io/ To Create Spring Project Click Here Follow the step as given in image Below Finally, Click On Generate the project Button or Press Ctrl+Enter To Generate How  To Create Spring Boot Project From Spring Initializer Watch Video