spring基于注解的申明式事务控制
spring中基于注解的申明式事务控制配置步骤
1、配置事务管理器
2、开启spring对注解事务的支持
3、在需要事务支持的地方使用@Transactional注解
<!-- 配置事务管理器 -->
<bean id="transactionManeger" class = "org.springframework.jdbc.datasource.DataSourceTransactionManeger"
<property name= "dataSource" ref= "dataSource"></property>
</bean>
<!-- 开启spring对注解事务的支持 -->
<tx:annotation-driven transaction-manager="transactionManeger"></tx:annotation-driven>