如何正确读取 Flux<DataBuffer>并将其转换为单个输入流
2022-09-01 02:41:21
我正在为我的 spring-boot 应用程序使用和自定义类WebClient
BodyExtractor
WebClient webLCient = WebClient.create();
webClient.get()
.uri(url, params)
.accept(MediaType.APPLICATION.XML)
.exchange()
.flatMap(response -> {
return response.body(new BodyExtractor());
})
身体提取器.java
@Override
public Mono<T> extract(ClientHttpResponse response, BodyExtractor.Context context) {
Flux<DataBuffer> body = response.getBody();
body.map(dataBuffer -> {
try {
JaxBContext jc = JaxBContext.newInstance(SomeClass.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
return (T) unmarshaller.unmarshal(dataBuffer.asInputStream())
} catch(Exception e){
return null;
}
}).next();
}
上面的代码适用于小有效载荷,但不适用于大有效载荷,我认为这是因为我只读取单个通量值,我不确定如何组合和读取所有值。next
dataBuffer
我是反应堆的新手,所以我不知道通量/单声道的很多技巧。