I couldn’t find specific details in the issue or release notes, so I’m asking out of curiosity: Are there any differences in request handling between Spring WebFlux versions 6.1.1 ~ 6.1.3 and 6.1.4?
In versions 6.1.1 ~ 6.1.3, it seemed like separate threads named task-* were utilized,
whereas starting from 6.1.4, it appears to be using reactor-http-nio-* threads again.
Below are the actual dependencies I received to conduct tests:
- springboot starter webflux 3.2.0 (webflux 6.1.1)
- springboot starter webflux 3.2.1 (webflux 6.1.2)
- springboot starter webflux 3.2.2 (webflux 6.1.3)
- springboot starter webflux 3.2.3 (webflux 6.1.4)
I’d appreciate any clarification on the changes or reasons behind them. Thank you.
1