Spring Boot 2 的非阻塞 IO

Non Blocking IO with Spring Boot 2

我正在努力研究非阻塞 io,以便从 Spring Boot 2 应用程序发出 http 请求。我的用例是这样的,我需要进行服务到服务 HTTP 调用,而不需要为每个传出 HTTP 调用专门分配一个线程。

如果有人能指出正确的库 and/or 示例,我将不胜感激?

这里有一篇文章提到了一大堆选项:

https://dzone.com/articles/high-concurrency-http-clients-on-the-jvm

如果您的答案不在其中,Google "non blocking http request java"。那里有很多选择。适合您的选项取决于您的用例,与 Spring Boot.

无关