I'm new at Spring and I'm reading one book "Pro Spring boot 2". It says here that Spring Web MVC has some blocking on each request, and Spring Webflux is a completely non-blocking stack.
- Tell me, please, what is meant?
- The request that came to Spring MVC activates one thread to execute this request. When and why is it blocked?
- And why doesn't Spring WebFlux block thread?