8

我在我的 Web 应用程序中使用Spring 3.1 + Hibernate 4.x。在我的 DAO 中,我将用户类型对象保存如下

sessionFactory.getCurrentSession().save(user);

但得到以下异常:

org.hibernate.HibernateException: save is not valid without active transaction

我用谷歌搜索并在 SO 上发现了类似的问题,解决方案如下:

   Session session=getSessionFactory().getCurrentSession();
   Transaction trans=session.beginTransaction();
   session.save(entity);
   trans.commit();

这样就解决了问题。但是在那个解决方案中,手动开始和提交事务有很多混乱。

我不能 在不sessionFactory.getCurrentSession().save(user);手动开始/提交事务的情况下直接使用吗?

我也尝试@Transactional在我的服务/dao 方法上使用,但问题仍然存在。

编辑:这是我的 Spring 配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:p="http://www.springframework.org/schema/p"
     xmlns:aop="http://www.springframework.org/schema/aop"
     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.1.xsd
     http://www.springframework.org/schema/tx
     http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
     http://www.springframework.org/schema/aop 
     http://www.springframework.org/schema/aop/spring-aop-3.1.xsd">


  <!-- enable the configuration of transactional behavior based on annotations -->
  <tx:annotation-driven transaction-manager="txManager"/>

    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource"
        p:driverClassName="${db.driverClassName}" p:url="${db.url}"
        p:username="${db.username}" p:password="${db.password}" />

    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan" value="com.myapp.entities" />
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
    </bean>


    <bean id="txManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>

</beans>

我正在使用以下 Hibernate 4 依赖项:

<!-- Hibernate Dependency -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>4.1.7.Final</version>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>4.1.1.Final</version>
        </dependency>

        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib</artifactId>
            <version>${cglib.version}</version>
            <scope>runtime</scope>
        </dependency>

请帮忙。

4

3 回答 3

9

基本上需要做的是从 applicationContext.xml 文件中删除 Hibernate 属性的以下行:

<prop key="hibernate.current_session_context_class">thread</prop>

一旦删除,Hibernate 使用 Spring 进行事务管理

祝大家好运。

于 2012-10-25T10:04:28.587 回答
4

我认为您使用的是 Hibernate 4.x 那么为什么要在应用程序上下文文件中使用 Hibernate 3 事务管理器?

<bean id="txManager"
    class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory">
        <ref bean="sessionFactory" />
    </property>
</bean>

我认为应该是

<bean id="txManager"
    class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory">
        <ref bean="sessionFactory" />
    </property>
</bean>

只需尝试使用 hibernate 4 事务管理器和 @Transactional 属性就可以了。

于 2012-10-25T10:41:37.067 回答
1

使用 Spring XML 的工作版本和 @Transactional 注释的 DAO 类,您是否在 Spring XML 中定义 DAO?(也许作为原型)因为如果您不是,那么据我所知,您的 DAO 不会在事务方面进行 AOP。我认为这是最简单的方法。此示例来自Spring 3 Doc第 10.5.6 节 Using @Transactional

  <!-- this is the service object that we want to make transactional -->
  <bean id="fooService" class="x.y.service.DefaultFooService"/>

  <!-- enable the configuration of transactional behavior based on annotations -->
  <tx:annotation-driven transaction-manager="txManager"/>

...你可以用DefaultFooService代替你的 DAO。

于 2012-10-26T15:59:33.387 回答