In Spring Boot, the _____ annotation is used to denote a reactive programming model in a controller.

  • @Controller
  • @ReactiveController
  • @ResponseBody
  • @RestController
In Spring Boot, the @ReactiveController annotation is used to denote a reactive programming model in a controller. This annotation is specifically designed for reactive programming, and it's part of the Spring WebFlux framework, which enables reactive and non-blocking programming. It's used to define controllers that handle asynchronous and reactive operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *