Docs 菜单
Docs 主页
/ / /
Java Reactive Streams 驱动程序
/

下载并安装

1

确保您的开发环境中安装了 JDK 版本8 或更高版本的 。

本指南介绍如何在集成开发环境 (IDE) 中使用 Maven 或 Gradle 添加MongoDB Java驾驶员依赖项。 我们建议您使用 IntelliJ IDEA 或 Eclipse IDE 等 IDE。 IDE 可以更方便地配置 Maven 或 Gradle 以构建和运行项目。

如果您不使用 IDE,请参阅 构建 Maven 创建新的 Gradle 构建 了解有关如何设立项目的更多信息。请参阅 MongoDB Reactive Streams驱动程序 直接从 Maven下载驾驶员和依赖项。

2

本指南使用 Reactor 库中的方法,该库基于 Reactive Streams 规范。

在 IDE 中打开新的 Maven 或 Gradle项目。 如果您使用的是 Maven ,将以下代码段添加到您的pom.xml 中:

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-bom</artifactId>
<version>2023.0.7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

然后,将以下内容添加到pom.xml依赖项列表中:

<dependencies>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

使用 Gradle 安装 Reactor ,请参阅 获取 Reactor 在 Project Reactor 文档中。

配置依赖项后,运行依赖项管理器并在 IDE 中刷新项目,确保它们可用于您的项目。

3

在您的项目中,如果您使用 Maven ,将以下内容添加到pom.xml 依赖项列表中:

<dependencies>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-reactivestreams</artifactId>
<version>5.2.1</version>
</dependency>
</dependencies>

如果使用 Gradle,则将以下内容添加到 build.gradle 依赖项列表中:

dependencies {
implementation 'org.mongodb:mongodb-driver-reactivestreams:5.2.1'
}

配置依赖项后,运行依赖项管理器并在 IDE 中刷新项目,确保它们可用于您的项目。

完成这些步骤后,您就拥有了一个新项目并安装了驾驶员依赖项。

注意

如果您在该步骤中遇到问题,请在 MongoDB 社区论坛中寻求帮助,或使用本页右侧或右下角的 Rate this page(本页内容评级)标签页提交反馈。

后退

开始体验