Which of the following Spring Data JPA repositories generally provides methods for CRUD operations?

  • CrudRepository
  • JpaRepository
  • JpaSpecificationExecutor
  • PagingAndSortingRepository
The CrudRepository in Spring Data JPA generally provides methods for CRUD (Create, Read, Update, Delete) operations. It's a fundamental repository interface for basic data manipulation tasks. The other mentioned repositories extend CrudRepository and provide additional functionality such as pagination, sorting (JpaRepository), and specification-based querying (JpaSpecificationExecutor).

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.

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.

How can you handle exceptions thrown by a controller method in a Spring Boot application?

  • Defining a separate error controller.
  • Handling exceptions is not possible in Spring Boot.
  • Using System.out.println() statements.
  • Using the @ExceptionHandler annotation.
In Spring Boot, you can handle exceptions thrown by a controller method using the @ExceptionHandler annotation. This annotation allows you to define methods that can handle specific exceptions or exception types. Using System.out.println() statements is not the recommended way to handle exceptions, and not handling exceptions is not a valid approach. Defining a separate error controller is a possible strategy but less commonly used.