In Spring Boot, which module enables the development of reactive applications?
- spring-boot-starter-data-jpa
- spring-boot-starter-security
- spring-boot-starter-web
- spring-webflux
In Spring Boot, the module that enables the development of reactive applications is spring-webflux. This module provides a foundation for building reactive, non-blocking applications. It includes support for creating reactive RESTful services and interacting with reactive data sources. Reactive programming is particularly useful for handling high concurrency and low latency scenarios.
Loading...
Related Quiz
- In a Spring Boot test, how can you override the properties defined in the application.properties file?
- Which utility is commonly used in Spring Boot for performing HTTP requests in test scenarios?
- What is the primary role of the @RestController annotation in Spring Boot?
- To define hierarchical properties in a YAML configuration file in Spring Boot, you can use _____.
- What is the primary purpose of the @SpringBootTest annotation in Spring Boot testing?