spring transactional in R2DBC mongo and postgresql

69 views Asked by At

I've started working with Spring Webflux and project reactor. I'm struggling with "Transactional" concept. I don't understand if @Transcational keyword is still valid on methods which performs operations on ReactiveMongoRepository or PostgreSql repository (e.g. save, update, delete).

Actually I'm using built-in metods to ReactiveMongoRepository to perform save, delete etc. But what if e.g. save will fail and I'd like to be my changes reverted back. Should I put Transactional on method. Is it valid keyword in Spring Webflux with project reactor? Thank you for help and clarification.

0

There are 0 answers