Spring Data Lovelace M3 (2.1.0.M3) hỗ trợ giao dịch đồng bộ cho MongoDB v4.0, được phát hành vào ngày 17 tháng 5 năm 2018. Xem thêm Ghi chú phát hành Spring Data Lovelace M3 .
Ví dụ từ Dữ liệu mùa xuân tài liệu:Giao dịch MongoDB
ClientSession session = client.startSession(options);
template.withSession(session)
.execute(action -> {
session.startTransaction();
try {
Step step = // ...;
action.insert(step);
process(step);
action.update(Step.class).apply(Update.set("state", // ...
session.commitTransaction();
} catch (RuntimeException e) {
session.abortTransaction();
}
}, ClientSession::close)
.subscribe();
Xem thêm liên quan: DATAMONGO-1920 và DATAMONGO-1970