Spring @Transaction没有回滚

时间:2017-05-12 03:58:03

标签: spring hibernate transactions

我有一个非常奇怪的问题,并在这里寻找解决方案。我花了很多时间阅读文章和其他问题,但没有运气。 我在我的Spring 3和hibernate 3的示例应用程序中使用@Transactional注释,如下所示。在方法的最后一行,我明确地抛出NullPointerException,如下所示。

package com.mkyong.common;

import org.apache.log4j.Logger;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.mkyong.stock.bo.StockBo;
import com.mkyong.stock.model.Stock;

@Service("stockService")
public class StockServiceImpl {

    final static Logger logger = Logger.getLogger(StockServiceImpl.class);


        @Transactional(rollbackFor ={ NullPointerException.class}  )
        public  void createNewStock(StockBo stockBo) {
            /** insert **/
            Stock stock = new Stock();
            String code = "xee";
            stock.setStockCode(code);
            stock.setStockName(code);
            stockBo.save(stock);

            logger.debug("#################### After Save ##########################");
            throw new NullPointerException();

        }

}

但是,即使抛出NullPointerException,此事务也不会回滚并始终提交到数据库。 下面是我的应用程序上下文文件

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/tx 
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context-3.0.xsd
   ">

    <!-- Database Configuration -->
    <import resource="../database/DataSource.xml" />
    <import resource="../database/Hibernate.xml" />

    <tx:annotation-driven transaction-manager="transactionManager"/>

    <!-- Auto scan the components -->
    <context:component-scan base-package="com.mkyong.stock" />
    <bean
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
        id="transactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
</beans>

2 个答案:

答案 0 :(得分:1)

从您的配置判断您正在使用Hibernate,但是您使用的事务管理器仅用于纯JDBC使用。

要进行正确的事务管理,您必须使用属于持久性技术的PlatformTransactionManager。在您的情况下,您应该使用HibernateTransactionManager而不是DataSourceTransactionManager

<bean id="transactionManager" class="org.springframework.hibernate5.HibernateTransactionManager>
    <property name="sessionFactory" ref="sessionFactory" />
</bean>

注意:这是针对Hibernate5(请参阅包名)使用适合您的hibernate版本的那个。

答案 1 :(得分:0)

仅使用@Transactional注释就足够了。你不需要在NullPointerException上回滚rollbackFor属性。具有@Transactional注释的事务默认为RuntimeException。 仅当您要在Checked Exceptions上回滚时才应添加rollbackFor。