Hello, Is it possible to use Spring WebFlux and S...
# spring
t
Hello, Is it possible to use Spring WebFlux and Spring MVC in the same project. We would like to migrate step by step.
s
Hey Tristan, it is possible (and recommanded) to use WebFlux
WebClient
with Spring MVC server but not both WebFlux and MVC servers.
If you want a progressive, just use
Mono
and
Flux
within Spring MVC, from 5.0 we handle it very well. Not as scalable as WebFlux server but still very good.
t
Thank you
It's not possible to use coroutines with webflux currently? I guess it's only in Spring Fu for the moment?