Reputation: 54005
What is the non-XML (in @Configuration) equivalent of <tx:annotation-driven> in Spring 3.1?
@Configuration
<tx:annotation-driven>
Upvotes: 7
Views: 1886
Reputation: 242686
Spring 3.1 has @EnableTransactionManagement annotation for this purpose.
@EnableTransactionManagement
Upvotes: 9