My project Hibernate version 6
My project Spring Boot Version 3.2.2
For a special case, if an entity is to be updated, I want to undo the changes in some cases. Is it possible to do this during @PostUpdate
?
In case of @PostUpdate
when I do entityManager.refresh(entity)
it does not rollback.