我正在使用 spring 3.0.3.RELEASE 以及 mybatis-3.0.2 和 mybatis-spring-1.0.0 在 Apache Tomcat 6.0.29 和 JDK 1.6.0_21 中运行。
我创建了我的 DAO 类和 Service 类并定义了以下声明性事务控制 -
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*" propagation="REQUIRED" />
</tx:attributes>
</tx:advice>
<aop:config>
<aop:pointcut id="dtxops"
expression="execution(* com.project.service.*.*(..))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="dtxops" />
</aop:config>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource">
<ref bean="dataSource" />
</property>
</bean>
此方法在使用 ItemDAO 的类 com.project.service.ItemDAOServiceImpl 中。SystemException 是一个 RunTimeException。我传递了2个要删除的id,一个id存在于系统中,另一个不存在。由于一个 id 不存在,我得到 SystemException 但是当我检查数据库时,另一个 id 被删除而不是回滚。
public void deleteItem(List<Integer> itemIds) {
for (int itemId : itemIds) {
try {
int result = itemDAO.delete(itemId);
if (result != 1) {
throw new SystemException(
"Failed to delete item");
}
} catch (DataAccessException dae) {
log.error("Failed to delete item", dae);
throw new SystemException("Failed to delete items");
}
}
}