Docs 菜单
Docs 主页
/ / /
Scala
/

Stable API

在此页面上

  • Overview
  • 启用stable API
  • 配置stable API
  • 故障排除
  • 服务器上无法识别的字段“apiVersion”
  • 已提供 apiStrict:true,但命令计数不在 API 版本中
  • API 文档

注意

Stable API 功能需要 MongoDB Server 5.0 或更高版本。

在本指南中,您可以了解如何在连接到stable API MongoDB部署时指定 兼容性。

Stable API功能会强制服务器以与您指定的API版本兼容的行为来运行操作。 使用 Stable API可确保服务器响应一致,并为应用程序提供长期的API稳定性。

以下部分介绍如何为 客户端启用和自定义stable API MongoDB。有关 的更多信息,包括其支持的命令列表,请参阅stable API stable APIMongoDB Server手册中的 。

要启用stable API ,请执行以下步骤:

  1. 构造一个 ServerApi 对象并指定stable API版本。 您必须使用 ServerApiVersion 枚举中定义的stable API版本。

  2. 使用 MongoClientSettings.Builder 类构造 MongoClientSettings对象。

  3. 使用构造函数实例化 MongoClient,并将 MongoClientSettings实例作为参数传递。

以下代码示例展示了如何指定stable API版本 1:

val serverApi = ServerApi.builder()
.version(ServerApiVersion.V1)
.build()
// Replace the uri string placeholder with your MongoDB deployment's connection string
val uri = "<connection string URI>"
val settings = MongoClientSettings.builder()
.applyConnectionString(ConnectionString(uri))
.serverApi(serverApi)
.build()
val mongoClient = MongoClient(settings)

创建具有指定API版本的 MongoClient实例后,使用客户端运行的所有命令都将使用指定版本。如果必须使用多个版本的 Stable API运行命令,请创建新的 MongoClient

下表描述了您可以通过调用 ServerApi 类中的方法设立的Stable API选项。您可以使用这些选项来自定义 Stable API的行为。

选项名称
说明

strict

Optional. When true, if you call a command that isn't part of the declared API version, the driver raises an exception.

Default: false

deprecationErrors

Optional. When true, if you call a command that is deprecated in the declared API version, the driver raises an exception.

Default: false

以下代码示例展示了如何通过ServerApi.Builder上的链式方法在ServerApi的实例上设立两个选项:

val serverApi = ServerApi.builder()
.version(ServerApiVersion.V1)
.strict(true)
.deprecationErrors(true)
.build()

如果您指定API版本并连接到不支持Stable API 的MongoDB服务器,则Scala驾驶员会引发此异常。确保您要连接到运行MongoDB Server v5.0 或更高版本的部署。

如果您的 MongoClient 运行的操作不在您指定的 Stable API版本中,则Scala驾驶员会引发此异常。要避免此错误,请使用指定 Stable API版本支持的替代操作,或在构造 ServerApi对象时将 strict 选项设立为 false

有关将 Stable API与Scala驾驶员结合使用的更多信息,请参阅以下API文档:

后退

创建客户端