Junior — Middle
What type of transactional management is used by default in Spring Framework?
sobes.tech AI
Answer from AI
In the Spring Framework, declarative transaction management is used by default with the @Transactional annotation. The implementation of transactions is handled by PlatformTransactionManager, and most often DataSourceTransactionManager is used for working with JDBC. This approach allows managing transactions declaratively, without explicit code for beginning and committing transactions.