- 浏览: 1064 次
最新评论
文章列表
(1)在serviceImpl层,不能catch异常,如果需要catch也要在catch里抛出异常,不然不回滚
(2)applicationContext.xml中增加如下配置:
<bean id="txManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</be ...