what is transactional annotation for in springboot ?
Sigiloso
transactional annotation is used to mark a method as transactional, This means that either the entire method completes successfully and commits the transaction, or if an exception occurs, the transaction is rolled back, reverting any changes made within the method.