Spring Boot Flashcards

1
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Spring Boot?

A

Spring Boot is an open-source Java-based framework used to create stand-alone, production-grade Spring-based applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

True or False: Spring Boot eliminates the need for configuring XML files.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What annotation is used to mark a class as a Spring Boot application?

A

@SpringBootApplication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Fill in the blank: Spring Boot uses _______ to automatically configure the application based on the libraries on the classpath.

A

auto-configuration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the default port on which a Spring Boot application runs?

A

8080

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which file is used for configuration in a Spring Boot application?

A

application.properties or application.yml

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What command is used to create a new Spring Boot project using Spring Initializr?

A

There is no specific command; you can use the web interface at start.spring.io.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

True or False: Spring Boot supports embedded web servers like Tomcat and Jetty.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the purpose of the ‘spring-boot-starter’ dependency?

A

It provides a set of convenient dependencies for building Spring applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How can you externalize configuration in Spring Boot?

A

By using application.properties, application.yml, environment variables, or command-line arguments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is Spring Boot Actuator?

A

A set of tools for monitoring and managing Spring Boot applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which annotation is used to create a RESTful web service in Spring Boot?

A

@RestController

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the purpose of the @Autowired annotation?

A

It allows Spring to resolve and inject collaborating beans into your bean.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

True or False: Spring Boot applications can be packaged as executable JAR files.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the Spring Boot CLI?

A

A command-line interface for quickly developing Spring applications.

17
Q

Fill in the blank: Spring Boot uses _______ to manage dependencies effectively.

A

Maven or Gradle

18
Q

What is the main benefit of using Spring Boot?

A

It simplifies the setup and development of new Spring applications.

19
Q

Which annotation is used to define a scheduled task in Spring Boot?

A

@Scheduled

20
Q

True or False: Spring Boot requires Java EE to run.

21
Q

What is a Spring Boot Starter?

A

A set of convenient dependency descriptors you can include in your application.

22
Q

How do you run a Spring Boot application from the command line?

A

By using the command ‘mvn spring-boot:run’ or ‘java -jar yourapp.jar’.

23
Q

What is the role of the application.properties file?

A

It is used to configure properties for the Spring Boot application.

24
Q

What does the term ‘Convention over Configuration’ mean in the context of Spring Boot?

A

It means that Spring Boot provides default configurations to reduce the need for manual setup.

25
Q

Which annotation is used to enable Spring Boot’s auto-configuration feature?

A

@EnableAutoConfiguration

26
Q

What is the purpose of the ‘spring-boot-devtools’ dependency?

A

It provides development-time features like automatic restarts and live reload.

27
Q

What is the significance of the ‘main’ method in a Spring Boot application?

A

It serves as the entry point for the application.