gpt4 book ai didi

java - Spring 启动 webflux : avoid thread-blocking method calls in handler

转载 作者:行者123 更新时间:2023-12-02 01:12:15 26 4
gpt4 key购买 nike

我刚刚开始使用 WebFlux 和整个响应式范例,但我陷入了困境:

@Component
public class AbcHandler {

private ObjectMapper objectMapper = new ObjectMapper();

public Mono<ServerResponse> returnValue() throws IOException {

Abc abc = objectMapper.readValue(new ClassPathResource("data/abc.json").getURL(), Abc.class);

return ServerResponse.ok().contentType(MediaType.APPLICATION_JSON)
.body(BodyInserters.fromValue(abc));
}
}

IntelliJ 警告我 readValue()toURL() 是线程阻塞方法调用。

我可以忽略这一点,或者我应该如何返回我从文件系统读取并映射到域类的 JSON 结构?

我觉得这应该以异步方式完成,或者至少更加“ react 性”。

最佳答案

您应该将其包装在 fromCallable 中,并确保它在自己的线程上运行。

Blocking calls in reactor

@Autowire
private ObjectMapper objectMapper;

public Mono<ServerResponse> fooBar() throws IOException {
return Mono.fromCallable(() -> objectMapper.readValue(new ClassPathResource("data/Foo.json")
.getURL(), Foo.class))
.subscribeOn(Schedulers.boundedElastic())
.flatMap(foo -> ServerResponse.ok().contentType(MediaType.APPLICATION_JSON)
.bodyValue(foo));

}

关于java - Spring 启动 webflux : avoid thread-blocking method calls in handler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59218794/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com