我需要通过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();
}