One way to configure Spring to rollback on a non RuntimeExceptions is using @Transactional(rollbackFor=…) annotation on the service classes. The problem with this approach is that we need to define (…
One way to configure Spring to rollback on a non RuntimeExceptions is using @Transactional(rollbackFor=…) annotation on the service classes. The problem with this approach is that we need to define (…