事务的xml配置方式
<!--切点-->
<bean id="" class="">
<property name="" ref=""/>
</bean>
<!-- 配置事务平台管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 通知 事务的增强-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--设置事务属性信息-->
<tx:attributes>
<!--*:被增强的所有方法,isolation:事务的隔离级别,propagation:传播行为,timeout:超时时间-->
<tx:method name="*" isolation="DEFAULT" propagation="REQUIRED" timeout="-1" read-only="false"/>
</tx:attributes>
</tx:advice>
<!--配置事务的aop织入-->
<aop:config>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.famcoo.service.impl.*.*(..))"/>
</aop:config>
事务的注解驱动
<!-- 配置事务平台管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--事务的注解驱动-->
<tx:annotation-driven transaction-manager="transactionManager"/>
然后在需要被增强的方法上添加 @Transactional(isolation=Isolation.REPEATABLE_READ.....) 就可以了