Google News
logo
Java Springs - Interview Questions
Can Spring Boot allow Spring MVC or Spring WebFlux in the same application?
Yes, Spring Boot can allow either Spring MVC or Spring WebFlux in the same application but with the condition to apply only one at a time. This is because MVC is a blocking paradigm, and WebFlux is a non-blocking paradigm and hence cannot be used together.
Advertisement