Spring Boot Interview Questions
Spring Boot Interview Questions
It is used to create stand alone spring based application that you can just run
because it needs very little spring configuration.
o Create stand-alone Spring applications that can be started using java -jar.
o Embed Tomcat, Jetty or Undertow directly. You don't need to deploy WAR
files.
o It provides opinionated 'starter' POMs to simplify your Maven configuration.
o It automatically configure Spring whenever possible.
Play Video
Download the CLI tool from official site and For more information click here.
Spring Boot upgrades all dependencies automatically when you upgrade Spring
Boot.
Spring Boot provides built-in starters which makes development easier and rapid.
For example, if we want to get started using Spring and JPA for database access,
just include the spring-boot-starter-data-jpa dependency in your project.
For more information click here.
It can be integrate with Spring Framework and ideal for HTML5 Java web
applications.
1. <dependency>
2. <groupId>org.springframework.boot</groupId>
3. <artifactId>spring-boot-starter-thymeleaf</artifactId>
4. </dependency>
Wheras Spring Boot is a spring module which is used to create spring application
project that can just run.