«
Prev
»
Next
Spring / Spring Data Access
What are the default @Transactional settings?
- Default propagation setting is PROPAGATION_REQUIRED.
- Isolation level is ISOLATION_DEFAULT.
- The transaction is read/write.
- Transaction timeout defaults to the default timeout of the underlying transaction system, none if timeouts are not supported.
- Any RuntimeException triggers rollback, and any checked Exception does not.
More Related questions...
Comments & Discussions