如何在Spring Webflux / WebClient中设置事件循环池大小?
2022-09-03 13:39:53
在 Vert.X 等多反应器框架中,我们可以设置事件循环线程的数量,例如:
final VertxOptions vertxOptions = new VertxOptions();
vertxOptions.setEventLoopPoolSize(16);
final Vertx myVertx = Vertx.vertx(vertxOptions);
如何在Spring Boot 2 WebFlux / WebClient中做等效操作?