Java 中的 Mono 类:啥是,何时使用?
Posted
技术标签:
【中文标题】Java 中的 Mono 类:啥是,何时使用?【英文标题】:Mono class in Java: what is, and when to use?Java 中的 Mono 类:什么是,何时使用? 【发布时间】:2020-06-27 12:44:16 【问题描述】:我有以下代码:
import org.springframework.http.MediaType;
import org.springframework.stereotype.Component;
import org.springframework.web.reactive.function.BodyInserters;
import org.springframework.web.reactive.function.server.ServerRequest;
import org.springframework.web.reactive.function.server.ServerResponse;
import reactor.core.publisher.Mono;
@Component
public class GreetingHandler
public Mono<ServerResponse> hello(ServerRequest request)
return ServerResponse.ok().contentType(MediaType.TEXT_PLAIN)
.body(BodyInserters.fromValue("Hello Spring!"));
我理解这段代码,除了 Mono 类做了什么以及它的特性是什么。我做了很多搜索,但没有直截了当:什么是 Mono 类以及何时使用它?
【问题讨论】:
projectreactor.io/docs/core/release/api/reactor/core/publisher/… 【参考方案1】:Mono<T>
是一个专门的Publisher<T>
,它最多发出一个项目,然后(可选地)以onComplete
信号或onError
信号终止。
它仅提供可用于Flux
的运算符子集,并且一些运算符(尤其是那些将Mono
与另一个Publisher
组合在一起的运算符)切换到Flux
。例如,Mono#concatWith(Publisher)
返回一个Flux
,而Mono#then(Mono)
返回另一个Mono
。
请注意,您可以使用Mono
来表示只有完成概念的无值异步进程(类似于 Runnable)。要创建一个,您可以使用空的Mono<Void>
。
Mono 和 Flux 都是响应式流。它们表达的内容不同。 Mono 是 0 到 1 个元素的流,而 Flux 是 0 到 N 个元素的流。
这两个流的语义差异非常有用,例如向 Http 服务器发出请求期望收到 0 或 1 个响应,在这种情况下使用 Flux 是不合适的。相反,在区间上计算数学函数的结果需要区间中的每个数字一个结果。在其他情况下,使用 Flux 是合适的。
使用方法:
Mono.just("Hello World !").subscribe(
successValue -> System.out.println(successValue),
error -> System.error.println(error.getMessage()),
() -> System.out.println("Mono consumed.")
);
// This will display in the console :
// Hello World !
// Mono consumed.
// In case of error, it would have displayed :
// **the error message**
// Mono consumed.
Flux.range(1, 5).subscribe(
successValue -> System.out.println(successValue),
error -> System.error.println(error.getMessage()),
() -> System.out.println("Flux consumed.")
);
// This will display in the console :
// 1
// 2
// 3
// 4
// 5
// Flux consumed.
// Now imagine that when manipulating the values in the Flux, an exception
// is thrown for the value 4.
// The result in the console would be :
// An error as occured
// 1
// 2
// 3
//
// As you can notice, the "Flux consumed." doesn't display because the Flux
// hasn't been fully consumed. This is because the stream stop handling future values
// if an error occurs. Also, the error is handled before the successful values.
来源:Reactor Java #1 - How to create Mono and Flux?、Mono, an Asynchronous 0-1 Result
它可能会有所帮助:Mono doc
【讨论】:
以上是关于Java 中的 Mono 类:啥是,何时使用?的主要内容,如果未能解决你的问题,请参考以下文章
何时使用 Mono<List<Object>> 以及何时使用 Flux<Object> 用于 RestController 方法