What is the significance of using the spring.profiles.active property in the application properties or YAML file in Spring Boot?

  • It determines which database to use for storage.
  • It specifies the default active Spring profile.
  • It defines the active Spring Boot application.
  • It sets the logging level for the application.
The spring.profiles.active property in Spring Boot's application properties or YAML file is used to specify the default active Spring profile. Profiles allow you to customize the application's configuration based on the environment (e.g., development, production) or other criteria. By setting this property, you determine which profile is active by default when your Spring Boot application starts. The other options are not the primary purpose of this property.

Imagine you are developing a Spring Boot application with multiple data sources. How would you configure and use these data sources?

  • By creating separate DataSource beans for each data source and configuring them using their respective properties.
  • By sharing a single DataSource bean across multiple data sources to reduce overhead.
  • By using Spring Boot's default data source configuration without any customizations.
  • By using a single data source and manually managing the connections to different databases.
In a Spring Boot application with multiple data sources, it's essential to create separate DataSource beans for each data source and configure them using their respective properties. This approach ensures that each data source is correctly configured and can be used independently. Sharing a single DataSource bean would not work well for multiple data sources as it can lead to conflicts and reduced flexibility. Manually managing connections is error-prone and not recommended. Using Spring Boot's default configuration may not be suitable for custom data source requirements.

What is the primary use of WebFlux in a Spring Boot application?

  • To build reactive, non-blocking web applications.
  • To create traditional MVC controllers.
  • To develop synchronous, blocking web applications.
  • To generate API documentation.
The primary use of WebFlux in a Spring Boot application is to build reactive, non-blocking web applications. WebFlux is a reactive programming framework provided by Spring Boot for building web applications that can handle a large number of concurrent connections without blocking threads. It's particularly useful for scenarios where you need to handle streaming data or high concurrency, making it well-suited for real-time applications and microservices that require responsiveness.

When creating a custom query in Spring Data JPA, the _____ annotation is used to modify the underlying query execution.

  • @CustomQuery
  • @JpaQuery
  • @ModifyQuery
  • @Query
When creating a custom query in Spring Data JPA, the @Query annotation is used to modify the underlying query execution. It allows developers to define custom JPQL or native SQL queries and attach them to repository methods. This annotation provides flexibility in crafting specific queries tailored to the application's needs.

Which of the following can be used to enable method security annotations in a Spring Security configuration class?

  • @EnableMethodAnnotations
  • @EnableMethodSecurity
  • @EnableSecuredMethods
  • @EnableSecurityMethods
To enable method security annotations in a Spring Security configuration class, you should use the @EnableMethodSecurity annotation. This annotation allows you to configure method-level security in your application.

How can you configure property sources in a specific order in Spring Boot for resolving properties?

  • By using the spring.config.name property.
  • By using the spring.config.order property.
  • By setting the @PropertySource annotation order.
  • By using the @ConfigurationProperties annotation order.
In Spring Boot, you can configure property sources in a specific order by using the spring.config.order property. This property allows you to specify the order in which configuration files are processed, with lower values indicating higher precedence. While other options are used in Spring Boot for property configuration, they do not control the order of property sources.

When using @Secured and @PreAuthorize annotations, what is the primary configuration attribute that needs to be enabled?

  • expressionHandler
  • methodSecurity
  • prePostEnabled
  • securedEnabled
To use @Secured and @PreAuthorize annotations in Spring Security, you need to enable the prePostEnabled attribute in the security configuration. This attribute enables the use of pre- and post-invocation expression handling.

For custom validation logic in Spring Boot, the _____ method of the ConstraintValidator interface needs to be implemented.

  • handleValidation
  • initialize
  • isValid
  • validate
For custom validation logic in Spring Boot, the isValid method of the ConstraintValidator interface needs to be implemented. This method contains the custom validation logic and is called to validate the annotated field or parameter. The initialize method is used for initializing the validator, and validate is not a method in the ConstraintValidator interface.

In Spring Framework, what is the difference between @Autowired and @Inject annotations?

  • @Autowired is a Spring-specific annotation, whereas @Inject is a standard Java EE annotation.
  • @Autowired can be used to inject dependencies only by type, while @Inject supports both by type and by name.
  • @Autowired is used to define the scope of a bean, while @Inject is used for constructor injection.
  • @Autowired is used for field injection, while @Inject is used for method injection.
The primary difference between @Autowired and @Inject lies in their origin and scope. @Autowired is a Spring-specific annotation and provides more extensive support for resolving and injecting dependencies. It can inject dependencies by type, name, and more, offering a wide range of options. On the other hand, @Inject is part of the Java EE standard and provides basic support for dependency injection by type and name. Typically, @Autowired is the preferred choice in a Spring application for its flexibility and powerful dependency resolution capabilities.

Which Spring Boot feature is commonly used to automate the database schema creation and update process?

  • Spring Data JPA
  • Spring Database Migrations
  • Spring Boot Auto-Config
  • Spring Hibernate
Spring Data JPA is commonly used in Spring Boot applications to automate the database schema creation and update process. It provides a high-level, object-oriented interface for interacting with databases and generates SQL statements for schema changes automatically. While the other options may interact with databases, they are not specifically designed for automating schema changes in the same way Spring Data JPA does.