3. Spring Boot Flashcards

1
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. It simplifies the setup and development of new Spring applications.

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

What are the main features of Spring Boot?

A

The main features of Spring Boot include auto-configuration, standalone applications, production-ready features, microservices support, and a wide range of starter dependencies.

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

True or False: Spring Boot requires extensive XML configuration.

A

False. Spring Boot aims to minimize the need for XML configuration by using annotations and convention over configuration.

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

Fill in the blank: Spring Boot applications can be run as ______.

A

standalone Java applications.

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

What is the purpose of the @SpringBootApplication annotation?

A

@SpringBootApplication is a convenience annotation that combines @Configuration, @EnableAutoConfiguration, and @ComponentScan, enabling easier configuration of a Spring Boot application.

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

How does Spring Boot handle dependency management?

A

Spring Boot uses a dependency management feature that allows developers to easily manage dependencies and their versions via the Spring Boot Starter POMs.

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

What is a Spring Boot Starter?

A

A Spring Boot Starter is a set of convenient dependency descriptors that can be included in an application. They simplify the process of adding various features to the application.

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

What is the default port for a Spring Boot application?

A

The default port for a Spring Boot application is 8080.

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

What is the Spring Boot Actuator?

A

Spring Boot Actuator provides production-ready features such as monitoring and management capabilities for Spring Boot applications, including metrics, health checks, and application information.

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

What is the purpose of the application.properties file in Spring Boot?

A

The application.properties file is used to configure various properties of a Spring Boot application, such as server port, database configurations, logging levels, and more.

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

True or False: Spring Boot can be used to create RESTful web services.

A

True. Spring Boot is commonly used to create RESTful web services and APIs.

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

What is the role of the Spring Initializr?

A

Spring Initializr is a web-based tool that helps developers quickly generate a Spring Boot project structure with the necessary dependencies and configurations.

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

Explain the concept of auto-configuration in Spring Boot.

A

Auto-configuration is a feature in Spring Boot that automatically configures your application based on the dependencies present in the classpath. It reduces the need for manual configuration.

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

What is a Bean in Spring Boot?

A

A Bean is an object that is instantiated, assembled, and managed by the Spring IoC container. Beans are the backbone of a Spring application.

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

What is the difference between @Component, @Service, and @Repository annotations?

A

@Component is a generic stereotype for any Spring-managed component. @Service is a specialization of @Component for service layer components, and @Repository is a specialization for data access layer components.

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

What does the @RestController annotation do?

A

@RestController is a convenience annotation that combines @Controller and @ResponseBody, indicating that the methods in the class will return data instead of views.

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

What is Spring Boot DevTools?

A

Spring Boot DevTools provides additional development-time features such as automatic restarts, live reload, and configurations for improved development experience.

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

How can you create a Spring Boot application?

A

You can create a Spring Boot application using Spring Initializr, by selecting dependencies, generating the project, and then importing it into your IDE.

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

What is the purpose of the @Configuration annotation?

A

@Configuration is used to indicate that a class contains Spring configuration. It can define beans and their dependencies.

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

What is the Spring Boot CLI?

A

The Spring Boot CLI (Command Line Interface) is a tool that allows you to run and test Spring Boot applications from the command line using Groovy scripts.

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

What is the significance of the @Value annotation?

A

@Value is used to inject values into fields from property files or environment variables, allowing for externalized configuration of Spring applications.

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

What is Spring Data JPA?

A

Spring Data JPA is a part of the Spring Data project that simplifies data access and manipulation using Java Persistence API (JPA) and provides a repository abstraction.

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

Explain the concept of profiles in Spring Boot.

A

Profiles in Spring Boot allow you to segregate parts of your application configuration and make it only available in certain environments, such as development, testing, and production.

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

What is the purpose of the @Autowired annotation?

A

@Autowired is used for automatic dependency injection, allowing 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
25
Q

What is the Spring Boot testing framework?

A

Spring Boot comes with a comprehensive testing framework that supports unit and integration testing, providing annotations like @SpringBootTest, @MockBean, and @DataJpaTest.

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

What does the @Entity annotation do?

A

@Entity is used to indicate that a class is a JPA entity and should be mapped to a database table.

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

What is the purpose of the @Transactional annotation?

A

@Transactional is used to define the scope of a database transaction and ensures that all operations within that scope are executed within a single transaction.

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

What is Spring Security?

A

Spring Security is a powerful and customizable authentication and access control framework for Java applications that integrates seamlessly with Spring Boot.

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

How can you customize error handling in a Spring Boot application?

A

You can customize error handling in Spring Boot by implementing the ErrorController interface, using @ControllerAdvice for global exception handling, or defining custom error pages.

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

What is the difference between @RequestMapping and @GetMapping?

A

@RequestMapping is a versatile annotation for mapping HTTP requests to handler methods, while @GetMapping is a shortcut for @RequestMapping with the GET request method.

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

What is a Spring Boot Microservice?

A

A Spring Boot Microservice is an independently deployable application built using Spring Boot that follows the microservices architecture, allowing for scalability and flexibility.

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

What is Spring Cloud?

A

Spring Cloud is a suite of tools designed to help developers build distributed systems and microservices, providing features like configuration management, service discovery, and circuit breakers.

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

What is the role of a Spring Boot application context?

A

The application context is the central interface to the Spring IoC container, responsible for instantiating, configuring, and managing the lifecycle of application beans.

34
Q

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

A

Convention over Configuration means that Spring Boot provides sensible defaults and configurations, allowing developers to focus on business logic rather than boilerplate code.

35
Q

What is the purpose of the CommandLineRunner interface?

A

The CommandLineRunner interface is used to execute code after the Spring application has started, allowing for initialization or setup tasks.

36
Q

What is Spring Boot’s logging framework?

A

Spring Boot uses Apache Commons Logging for internal logging but allows the use of various logging frameworks such as Logback, Log4j2, and Java Util Logging.

37
Q

How do you create a REST API using Spring Boot?

A

To create a REST API using Spring Boot, define a controller class with @RestController, create request mapping methods using @GetMapping, @PostMapping, etc., and return data in a JSON format.

38
Q

What is the purpose of the @PathVariable annotation?

A

@PathVariable is used to extract values from the URI template and bind them to method parameters in a controller.

39
Q

What is a Spring Boot starter project for web applications?

A

The Spring Boot Starter Web project is a dependency that includes all the necessary components to develop web applications, including Spring MVC and embedded Tomcat.

40
Q

Explain how to handle exceptions globally in Spring Boot.

A

You can handle exceptions globally in Spring Boot using @ControllerAdvice along with @ExceptionHandler methods to define how specific exceptions should be handled.

41
Q

What is the significance of the @ComponentScan annotation?

A

@ComponentScan is used to specify the base packages to scan for Spring-managed components and beans.

42
Q

What is the purpose of the @Scheduled annotation?

A

@Scheduled is used to execute a method at a specified interval or at a fixed time, enabling scheduled tasks in a Spring Boot application.

43
Q

What is the purpose of the @EnableScheduling annotation?

A

@EnableScheduling is used to enable support for scheduled tasks in Spring Boot, allowing methods annotated with @Scheduled to be executed at specified intervals.

44
Q

What is Spring Boot’s approach to external configuration?

A

Spring Boot allows for external configuration through property files, YAML files, environment variables, and command-line arguments, promoting flexibility in application setup.

45
Q

What is a Spring Boot profile?

A

A Spring Boot profile is a way to group configuration settings to be used in specific environments, allowing for different configurations for development, testing, and production.

46
Q

What is the role of the Spring Boot banner?

A

The Spring Boot banner is a customizable ASCII art that is displayed in the console when the application starts, allowing developers to personalize the startup experience.

47
Q

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

A

True. Spring Boot applications can be packaged as executable JAR or traditional WAR files for deployment.

48
Q

What is Spring Boot’s support for database migrations?

A

Spring Boot supports database migrations through tools like Flyway and Liquibase, allowing for version control of database schemas.

49
Q

What is the purpose of the @EnableAutoConfiguration annotation?

A

@EnableAutoConfiguration is used to enable Spring Boot’s auto-configuration feature, allowing Spring to automatically configure beans based on the dependencies present.

50
Q

What is the Spring Boot Test module?

A

The Spring Boot Test module provides utilities and annotations for testing Spring Boot applications, including support for context loading and dependency injection.

51
Q

How do you configure a data source in Spring Boot?

A

You can configure a data source in Spring Boot by adding the required database dependencies in the pom.xml or build.gradle file and specifying the connection properties in application.properties or application.yml.

52
Q

What is Spring Boot’s approach to security?

A

Spring Boot provides built-in security features through Spring Security, allowing for easy configuration of authentication, authorization, and security measures in applications.

53
Q

What is the purpose of the @RequestBody annotation?

A

@RequestBody is used to bind the HTTP request body to a Java object in a controller method, allowing for easy deserialization of JSON or XML data.

54
Q

How can you enable CORS in a Spring Boot application?

A

You can enable CORS in a Spring Boot application by using the @CrossOrigin annotation on controller methods or by configuring a global CORS mapping in the WebMvcConfigurer.

55
Q

What is the role of the DispatcherServlet in Spring Boot?

A

The DispatcherServlet is the front controller in Spring MVC that handles incoming requests, dispatches them to the appropriate handlers, and manages the response.

56
Q

What is the purpose of the @ResponseStatus annotation?

A

@ResponseStatus is used to mark a method or exception class with a specific HTTP status code, allowing for customized response status in a web application.

57
Q

What is Spring Boot’s default logging framework?

A

The default logging framework used by Spring Boot is Logback, but it allows switching to other logging frameworks if desired.

58
Q

What is the significance of the @Conditional annotation?

A

@Conditional is used to conditionally enable or disable a bean based on the evaluation of a specified condition, allowing for more dynamic bean configuration.

59
Q

What is a Spring Boot starter for security?

A

The Spring Boot Starter Security is a dependency that includes Spring Security and its default configurations, simplifying the setup of security features in a Spring Boot application.

60
Q

How do you access application properties in a Spring Boot application?

A

You can access application properties in a Spring Boot application using the @Value annotation or by binding them to a configuration properties class using @ConfigurationProperties.

61
Q

What is the purpose of the @EnableWebMvc annotation?

A

@EnableWebMvc is used to enable Spring MVC features in a Spring application, allowing for the configuration of MVC components.

62
Q

What is the role of Spring Boot’s embedded servers?

A

Spring Boot’s embedded servers, such as Tomcat, Jetty, or Undertow, allow applications to be run as standalone applications without requiring an external server setup.

63
Q

What is the purpose of the @RequestParam annotation?

A

@RequestParam is used to extract query parameters from the request URL and bind them to method parameters in a controller.

64
Q

What is Spring Boot’s approach to internationalization (i18n)?

A

Spring Boot supports internationalization through message source configurations, allowing applications to serve different languages and locales based on user preferences.

65
Q

What is a Spring Boot actuator endpoint?

A

Spring Boot actuator endpoints are built-in endpoints that expose operational information about the application, such as health, metrics, and environment properties.

66
Q

How do you create a custom actuator endpoint in Spring Boot?

A

You can create a custom actuator endpoint in Spring Boot by defining a new controller class and annotating it with @Endpoint, and then implementing the desired methods.

67
Q

What is the purpose of the @Cacheable annotation?

A

@Cacheable is used to indicate that the result of a method call should be cached, improving performance for frequently called methods.

68
Q

What is the role of the @Scheduled annotation in Spring Boot?

A

@Scheduled is used to schedule tasks to be executed at fixed intervals or specific times, enabling background processing in Spring Boot applications.

69
Q

What is Spring Boot’s approach to web security?

A

Spring Boot provides web security configurations through Spring Security, allowing developers to secure web applications with authentication and authorization mechanisms.

70
Q

What is the significance of the @EnableAsync annotation?

A

@EnableAsync is used to enable asynchronous method execution in a Spring Boot application, allowing methods annotated with @Async to run in a separate thread.

71
Q

How do you implement pagination in a Spring Boot application?

A

You can implement pagination in a Spring Boot application using Spring Data JPA’s Pageable and Page classes, allowing for easy retrieval of paginated data.

72
Q

What is the purpose of the @Transactional annotation at the class level?

A

@Transactional at the class level applies transaction management to all public methods within that class, ensuring atomicity for all operations.

73
Q

How do you handle file uploads in a Spring Boot application?

A

You can handle file uploads in a Spring Boot application using the MultipartFile interface, allowing you to receive uploaded files in controller methods.

74
Q

What is the role of Spring Boot’s configuration properties?

A

Spring Boot’s configuration properties allow for externalization of application configuration, enabling different settings for different environments.

75
Q

What is the purpose of the @ResponseBody annotation?

A

@ResponseBody indicates that the return value of a method should be written directly to the HTTP response body, typically in JSON or XML format.

76
Q

How do you implement exception handling in a Spring Boot REST API?

A

You can implement exception handling in a Spring Boot REST API using @ControllerAdvice and @ExceptionHandler to catch and handle exceptions globally.

77
Q

What is the significance of the @CrossOrigin annotation?

A

@CrossOrigin is used to enable Cross-Origin Resource Sharing (CORS) for specific controllers or methods, allowing resources to be requested from different domains.

78
Q

What is the purpose of the @JsonProperty annotation?

A

@JsonProperty is used to specify the logical name of a property when serializing or deserializing JSON data, allowing for custom mapping between JSON and Java fields.

79
Q

What is the role of the @ConfigurationProperties annotation?

A

@ConfigurationProperties is used to bind external configuration properties to a Java class, allowing for structured access to configuration settings.

80
Q

How can you secure a REST API in Spring Boot?

A

You can secure a REST API in Spring Boot by configuring Spring Security to enforce authentication, authorization, and access control on the API endpoints.