Spring Data Lovelace M3 (2.1.0.M3) obsługuje transakcje synchroniczne dla MongoDB v4.0, wydanej 17 maja 2018 r. Zobacz także Informacje o wydaniu Spring Data Lovelace M3 .
Przykład z Dane wiosenne docs:transakcje 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();
Zobacz także powiązane:DATAMONGO-1920 i DATAMONGO-1970