从 2.x 迁移到 3.x 的指南
Spring Data MongoDB 3.x 需要 MongoDB Java 驱动程序 4.x
要了解有关驱动程序版本的更多信息,请访问 MongoDB 文档。
依赖项更改
-
org.mongodb:mongo-java-driver
(uber jar) 被替换为-
bson-jar
-
core-jar
-
sync-jar
-
依赖项的更改允许在不拉取同步驱动程序的情况下使用反应式支持。注意:新的同步驱动程序不再支持 com.mongodb.DBObject
。请改用 org.bson.Document
。
签名更改
-
MongoTemplate
不再支持com.mongodb.MongoClient
和com.mongodb.MongoClientOptions
。请改用com.mongodb.client.MongoClient
和com.mongodb.MongoClientSettings
。
如果您使用的是 AbstractMongoConfiguration
,请切换到 AbstractMongoClientConfiguration
。
命名空间变更
切换到com.mongodb.client.MongoClient
需要更新您的配置 XML(如果您有)。提供所需连接信息的最佳方式是使用连接字符串。有关详细信息,请参阅MongoDB 文档。
<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>