使用Springboot Java在MongoDB中进行事务

时间:2019-06-20 09:57:30

标签: mongodb transactions reactive

我需要通过Spring Boot在MongoDB中进行控制事务,但是我做不到。 我在首页上看到了该文档,但无法运行。请帮我。 有关交易的网址首页:https://www.mongodb.com/transactions

我已经尝试过但无法运行。请帮助我完整的教程,我什么也找不到。

try (ClientSession clientSession = client.startSession()) {
   clientSession.startTransaction();
   collection.insertOne(clientSession, docOne);
   collection.insertOne(clientSession, docTwo);
   clientSession.commitTransaction();
}

0 个答案:

没有答案