Is @EnableTransactionManagement required in Spring Boot?
I did some research. Some folks say you don\'t need it, as Spring Boot has it already enabled, others s
@EnableTransactionManagement is conditionally turned on/off based of the dependency jars we add in the classpath. If we use spring data jpa starter it is turned on.