in Education by
How does Spring Boot works?

1 Answer

0 votes
by

Spring Boot automatically configures your application based on the dependencies you have added to the project by using annotation. The entry point of the spring boot application is the class that contains @SpringBootApplication annotation and the main method.

Spring Boot automatically scans all the components included in the project by using @ComponentScan annotation.

Related questions

0 votes
    Starting points of Spring Boot Application? 1. @Controller 2. @SpringBootApplication 3. @Service 4. None of the Above...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    Is Dependency needed to create a Spring Boot web application? 1. Spring-boot-starter-web 2. Spring-boot-starter-test 3. Spring-boot-html 4. None of the Above...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    Minimum Java version needed for Spring Boot? 1. Java 10 2. Java 8 3. Java 7 4. Java 9...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    Which annotation is not Spring Boot Annotation? 1. @Controller 2. @RestController 3. @Service 4. @Data...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    Default HTML template engine in Spring Boot? 1. JSP 2. HTML 3. Thymeleaf 4. None of the Above...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    What is an IOC container in Spring boot?...
asked Jul 8, 2021 by JackTerrance
0 votes
    What is dependency Injection in Spring Boot?...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    What is Spring Boot dependency management?...
asked Jul 7, 2021 in Education by JackTerrance
0 votes
    What are starter dependencies in Spring boot?...
asked Jul 7, 2021 in General by JackTerrance
0 votes
    What is the starter dependency of the Spring boot module?...
asked Jul 5, 2021 in General by JackTerrance
0 votes
    What are the advantage Spring Boot over Spring?...
asked Jul 5, 2021 in Education by JackTerrance
0 votes
    What are the Spring Boot key components?...
asked Jul 5, 2021 in Education by JackTerrance
0 votes
    Database object must be annotated with? 1. @Table 2. @Entity 3. @Column 4. @Repository...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    Which of the following is used by Maven? 1. Pom.xml 2. Config.xml 3. META-INF 4. None of the Above...
asked Jul 8, 2021 in Education by JackTerrance
0 votes
    Annotation used for handling GET requests? 1. @PostMapping 2. @GetMapping 3. @PutMapping 4. None of the Above...
asked Jul 8, 2021 in Education by JackTerrance
...