Spring 事务不会异常回滚

Spring transaction doesn't rollback with exception

Config.xml

<bean id="emfactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="persistenceUnitName" ref="default"/>
    <property name="jpaVendorAdaptor">
        <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdaptor"/>
    </property>
    <property name="jpaProperties">
        <prop key="hibernate.show_sql">true</prop>
        <prop key="hibernate.dialect">com.xxx.xxx.xxx.xxx.SQLServer2012CustomDialect</prop>
    </property>
</bean>

<tx:annotation-driven transaction-manager="txManager"/>
<bean id="txManager" class="org.springframework.orm.jpa.JpaTransactionManager">
    <property name="entityManagerFactory" ref="emfactory"/>
</bean>

Service.java

@Transactional
public void save(Dto dto) throws Exception{
    dao.save(entity);
    throw new Exception();
}

我的问题是这个异常没有回滚事务。我搜索了很多,发现 spring 默认情况下 runtime/unchecked 异常的回滚事务。我试过如下;

@Transactional
public void save(Dto dto) throws Exception{
    dao.save(entity);
    throw new RunTimeException();
}

这工作正常,但它并不总是在代码中随处抛出运行时异常。所以,我确实挖掘并发现 rollbackFor 如下;

@Transactional(rollbackFor = Exception.class)
public void save(Dto dto) throws Exception{
    dao.save(entity);
    throw new Exception();
}

现在我必须更改我的所有代码以将@Transactional 更改为rollbackFor。但是还有其他方法可以将所有@Transaction 建议 属性 更改为 rollbackFor = Exception.class ?

再看看图中的红色矩形:

@Transactional默认只回滚未检查异常,检查异常不会回滚 默认.

这可能会解决您的问题:(查看红色矩形)

你想传递一个类的数组给这个属性,那么你应该这样写:

@Transactional(rollbackFor = new Class[]{Exception.class})

并且不像你写的那样:

@Transactional(rollbackFor = Exception.class)

现在,如果您想在不指定 rollbackFor 属性 的情况下回滚已检查的异常,则必须添加 XML 配置, 到您的配置文件。像这样:

<tx:advice id="txAdvice">
    <tx:attributes>
        <tx:method name="*" rollback-for="Throwable"/>
    </tx:attributes>
</tx:advice>

将此添加到您的配置 XML 文件中。以上将回滚已检查的异常。