Skip to main content

Features of Spring Boot

Features of Spring Boot


  • It reduces lots of development time and increases productivity.
  • It avoids writing lots of boilerplate Code, Annotations and XML Configuration.
  • It is very easy to integrate Spring Boot Application with its Spring Ecosystem like Spring JDBC, Spring ORM, Spring Data, Spring Security, etc.
  • It follows the “Opinionated Defaults Configuration” Approach to reducing Developer effort.
  • It provides Embedded HTTP servers like Tomcat, Jetty, etc. to develop and test our web applications very easily.
  • It provides CLI (Command Line Interface) tool to develop and test Spring Boot(Java or Groovy) Applications from command prompt very easily and quickly.
  • It provides lots of plugins to develop and test Spring Boot Applications very easily using Build Tools like Maven and Gradle.
  • It provides lots of plugins to work with embedded and in-memory Databases very easily.

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

How to Configuring a remote for a fork

How to Configuring a remote for a fork You must have to configure a remote that points to the upstream repository in git to sync changes mark you mark in a fork with the original repository .it also allow you to sync changes made in the original repository with the fork. To configure a remote for a fork you have to follow few step as given below Open Command Prompt / Open Git Bash List The Current Git Repository For Your Fork Specify a new remote upstream repository that will be synced with fork Verify the new upstream repository you've specified for you fork. Verify your configuration a remote for fork is correct or not 

How To Provide Explicit Mapping In Spring Boot Project

How To Provide Explicit Mapping In 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 , Today we will learn how to provide an explicit mapping. Open your IntelliJ IDE & go to your project  Right Click on your project and select the new package as shown below Give package name as the controller              After that Right Click on the package and select new java class and named as HelloMessage After That Write The controller code as shown below After that restart the server and open browser and type localhost:8080 Enjoy Explicit Mapping  !!!!!