如何使用弹簧助焊剂和弹簧助焊剂网络客户端来创建线程池?

时间:2018-12-19 04:05:43

标签: java spring multithreading spring-webflux

考虑一个简单的控制器

import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.reactive.function.client.WebClient;

@RestController
public class DtoController {

    private final WebClient client = WebClient.create("http://localhost:8081");

    @GetMapping("/booking")
    public Mono<MyDto> getDto() {
        return carsClient.get().uri("/myUrl")
                .retrieve()
                .bodyToMono(MyDto.class);
    }

}

一个文档告诉我们,在Spring Web流程中,只有一个IO线程和N个工作线程(N-CPU内核数)。和工人线程 在Mono / Flux调用之间重复使用。

但是,当我运行该应用程序时,我看到除了spring flux之外,spring web client还创建了IO线程和N个worker。所以我得到了:

"Attach Listener"@11 046: RUNNING
"DestroyJavaVM"@9 089 in group "main": RUNNING
"Finalizer"@11 048: WAIT
"ObjectCleanerThread"@6 732 in group "main": WAIT
"reactor-http-nio-1"@6 711 in group "main": RUNNING
"reactor-http-nio-2"@6 713 in group "main": RUNNING
"reactor-http-nio-3"@6 715 in group "main": RUNNING
"reactor-http-nio-4"@6 714 in group "main": RUNNING
"Reference Handler"@11 049: WAIT
"RMI Scheduler(0)"@1 798: WAIT
"RMI TCP Accept-0"@1 288: RUNNING
"RMI TCP Accept-0"@1 445: RUNNING
"RMI TCP Accept-59098"@1 355: RUNNING
"Signal Dispatcher"@11 047: RUNNING
"SimplePauseDetectorThread_0"@6 329: SLEEPING
"Thread-15"@6 328: WAIT
"XNIO-1 Accept"@8 573 in group "main": RUNNING
"XNIO-1 I/O-1"@8 518 in group "main": RUNNING
"XNIO-1 I/O-2"@8 537 in group "main": RUNNING
"XNIO-1 I/O-3"@8 547 in group "main": RUNNING
"XNIO-1 I/O-4"@8 552 in group "main": RUNNING

带有reactor-http-nio前缀的线程对应于spring应用程序,而XNIO对应于web流量客户端。

是否可以在Web客户端和应用程序之间重用工作程序?重用那些线程是个好主意吗?

1 个答案:

答案 0 :(得分:2)

您的服务器应用程序是在Reactor Netty上运行还是在Undertow上运行? XNIO线程通常与Undertow关联。您可以通过在应用程序启动期间查看日志来确保这一点。

如果是这种情况,这就是预期的行为,因为Reactor Netty和Undertow不共享客户端和服务器资源。

在最新版本的Spring Boot client and server resources are automatically shared, when possible for Jetty and Reactor Netty中。

请注意,如果您使用的是Spring Boot,则应尝试从WebClient创建WebClient.Builder实例,然后将其注入应用程序中的任何位置。这将为您提供预期的默认值和自定义配置。