Is it possible to rollback the hibernate reactive transaction when using micronaut data hibernate reactive? Let's say we are writing a test to create a user in the db. We would like to rollback that transaction after the test completes.
Annotating the test class with javax transactional annotation does not seem to help.
How would one go about rolling back the transaction in hibernate reactive?