I'm trying to figure out if it's possible to catch transaction events like it's described here, but with the reactive client?
If it's not possible I would appreciate if someone provide an example how it can be implement manually. I want to be able to add some business logic in my application before transaction start, before transaction commit and after transaction commit. And I think that events are best suited for such logic. Thanks in advance.
Finally, I've found a way how it can be implemented manually. Reactive hibernate has such a method in the Mutiny session implementation:
So, as you can see, two methods (beforeCompletion and afterCompletion) are called in the chain, which allows us to add custom logic before and after transaction commit. Those methods execute contract implementations from the queue. I'll show you an example of the "before" event. First of all, we should create some qualifier annotations. The
@Entity
annotation we are going to use to attach event listeners for the specific entity event:Let's imagine we have
Book
andAuthor
entities in our service and both of them extend aBaseEntity
model/interface. This base entity is used here as some kind of qualifier, which will be used later.And some annotations for CRUD actions, here as an example of the "create" action (the same is for the "update" action):
Next we create the class, which will trigger events. In this example we register "pre-insert" and "pre-update" listeners:
As you can see here we have a custom
EventReactiveBeforeTransactionCompletionProcess
interface, it will allow us to set current event to the hibernate process (and retrieve it later in the event). Let's create it:Now we have everything to create a custom hibernate integrator, which will allow us to register listeners.
And finally, the listener itself (you can retrieve the event here and the entity from it using parent
getEvent
method):That's all. If anyone knows a better realization, please let me know.