此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Data MongoDB 4.4.0! |
从 2.x 到 3.x 的迁移指南
Spring Data MongoDB 3.x 需要 MongoDB Java 驱动程序 4.x
要了解有关驱动程序版本的更多信息,请访问 MongoDB 文档。
依赖项更改
-
org.mongodb:mongo-java-driver
(Uber Jar) 替换为:-
bson-jar
-
核心 jar
-
sync-jar 的
-
依赖项的更改允许使用 reactive 支持,而无需拉取 synchronous driver。
注意:新的同步驱动程序不再支持 .请改用。com.mongodb.DBObject
org.bson.Document
签名更改
-
MongoTemplate
不再支持 和 . 请使用 and 代替。com.mongodb.MongoClient
com.mongodb.MongoClientOptions
com.mongodb.client.MongoClient
com.mongodb.MongoClientSettings
如果您使用的是 ,请切换到 。AbstractMongoConfiguration
AbstractMongoClientConfiguration
命名空间更改
切换到 需要更新配置 XML(如果有)。
提供所需连接信息的最佳方法是使用连接字符串。
有关详细信息,请参阅 MongoDB 文档。com.mongodb.client.MongoClient
<mongo:mongo.mongo-client id="with-defaults" />
<context:property-placeholder location="classpath:..."/>
<mongo:mongo.mongo-client id="client-just-host-port"
host="${mongo.host}" port="${mongo.port}" />
<mongo:mongo.mongo-client id="client-using-connection-string"
connection-string="mongodb://${mongo.host}:${mongo.port}/?replicaSet=rs0" />
<mongo:mongo.mongo-client id="client-with-settings" replica-set="rs0">
<mongo:client-settings cluster-connection-mode="MULTIPLE"
cluster-type="REPLICA_SET"
cluster-server-selection-timeout="300"
cluster-local-threshold="100"
cluster-hosts="localhost:27018,localhost:27019,localhost:27020" />
</mongo:mongo.mongo-client>