0

我无法打开 Hibernate 事务。

这是配置:

    <context:annotation-config />
    <context:component-scan base-package="com.cinebot" />
    <mvc:annotation-driven />
    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan">
            <list>
                <value>com.cinebot.db.entity</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
    </bean>

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

<tx:annotation-driven />

这是错误的代码:

@Transactional
public static <T> T get(Class<T> classe, Serializable id) throws Exception {
    if(id==null) return null;
    T obj = (T) HibernateUtil.getSessionFactory().getCurrentSession().get(classe, id);
    return obj;
}

这是一个例外:

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

这是一个示例实体:

package com.cinebot.db.entity;

// Generated 3-lug-2012 10.31.04 by Hibernate Tools 3.4.0.CR1

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

/**
 * Dettagli generated by hbm2java
 */
@Entity
@Table(name = "dettagli", catalog = "cinebot")
public class Dettagli implements java.io.Serializable {

    private static final long serialVersionUID = 1L;
    private String nome;
    private String valore;

    public Dettagli() {
    }

    public Dettagli(String nome) {
        this.nome = nome;
    }

    public Dettagli(String nome, String valore) {
        this.nome = nome;
        this.valore = valore;
    }

    @Id
    @Column(name = "nome", unique = true, nullable = false, length = 32)
    public String getNome() {
        return this.nome;
    }

    public void setNome(String nome) {
        this.nome = nome;
    }

    @Column(name = "valore", length = 65535)
    public String getValore() {
        return this.valore;
    }

    public void setValore(String valore) {
        this.valore = valore;
    }

}

我不明白为什么 @Transactional 注释不足以自动打开事务。我错过了什么?

谢谢

4

2 回答 2

1

刚刚看过这段代码,它显然不适用于 Spring 事务注释。

您正在使用静态方法并从静态持有者获取 SessionFactory。

您需要从 Spring 获取与 SessionFactory 的 Spring 实例连接的 DAO 实例。这将允许 Spring 代理 DAO 并提供事务行为。

于 2012-07-03T13:37:35.313 回答
1

根据评论您可以重新检查以下几点(尽管我不建议使用相同的)

  • 您需要将弹簧 DAO 注入/自动装配到您的控制器中。使用 @Repository 注释 DAO
  • 确保你的 spring 扫描并为你的 DAO 类创建 bean,这是由 context:component-scan 完成的。在这里,您的 dao 类应该在给定的包/子包中。

我建议在控制器和 DAO 之间使用服务层。将服务方法注释为@transactional,它调用DAO中的方法。请记住,您不应该创建任何 bean 的新实例来调用其中的方法,而是注入/自动装配 Service->Controller 和 DAO->Service。

于 2012-07-03T14:14:41.240 回答