Spring 事务配置
Posted Life Overflow
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 事务配置相关的知识,希望对你有一定的参考价值。
@Transactional(transactionManager="mainTX", propagation = Propagation.REQUIRED,isolation=Isolation.READ_COMMITTED,rollbackFor=Exception.class)
指定事务管理器
回滚:默认RuntimeException、Error会回滚,其他异常(checked异常)必须声明rollbackFor,notRollbackFor
spring-config.xml
<tx:annotation-driven />
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="mainDataSource" /> <qualifier value="mainTX"/> </bean>
spring-mvc.xml 仅扫描Controller,否则可能覆盖上下文中Service的事务声明
<context:component-scan base-package="com.xxx" use-default-filters="false"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> </context:component-scan>
以上是关于Spring 事务配置的主要内容,如果未能解决你的问题,请参考以下文章