11.2.2 添加 Reactor 依赖
让我们开始使用 Reactor 吧,把以下依赖添加到项目构建中:
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
</dependency>
Reactor 还提供了测试支持。您会写在您的 Reactor 代码周围写很多的测试,所以您肯定会想把这个依赖添加到项目构建中:
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
我假定您要向 Spring Boot 项目中添加这些依赖,它可以为您处理的依赖管理,所以没有必要指定依赖的 <version>
元素。但是如果您想在非 Spring Boot 项目中使用 Reactor,那么您需要在构建中设置 Reactor 的 BOM(物料清单)。以下依赖项管理条目将 Reactor 的“2020.0.4”版本添加到构建中::
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-bom</artifactId>
<version>2020.0.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
本章中我们将使用的示例都是独立的,与 Taco Cloud 无关。因此,最好创建一个全新的 Spring 项目,在构建中使用 Reactor 依赖项,并从那里开始工作。
现在,Reactor 在您的项目构建中了,可以使用 Mono 和 Flux 开始创建响应式管道了。对于本章的其余部分,我们将使用 Mono 和 Flux 提供的一些操作。