小编典典

org.hibernate.HibernateException:没有活动的事务,保存无效

hibernate

我正在创建JSF应用程序并在其中使用一些hibernate的东西。我要做的就是将实体保存到数据库中,但我不断收到此异常:

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

起初,我遇到了这个异常:

org.hibernate.HibernateException: No CurrentSessionContext configured!

然后,我发现需要将其添加到我的hibernate配置中:

<property name="hibernate.current_session_context_class">thread</property>

这解决了这个问题,但是现在出现了上面的问题。我将实体保存到这样的数据库中:

public void create(T entity) {
    getSessionFactory().getCurrentSession().save(entity);
}

我的hibernate.cfg.xml文件如下所示:

<hibernate-configuration>
    <session-factory>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/online_tests_management</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">root</property>
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.hbm2ddl.auto">update</property>
        <property name="hibernate.current_session_context_class">thread</property>

        <mapping class="com.groupgti.onlinetests.management.db.Service"/>
    </session-factory>
</hibernate-configuration>

我在用:

  • Hibernate-4.1.4.Final
  • JDK 1.6
  • Tomcat6
  • JSF 2.0
  • PrimeFaces 3.3.1
  • MySQL

有人知道可能在哪里吗?


阅读 175

收藏
2020-06-20

共1个答案

小编典典

你必须打电话 session.beginTransaction()

public void create(T entity) {
   Session session=getSessionFactory().getCurrentSession();
   Transaction trans=session.beginTransaction();
   session.save(entity);
   trans.commit();
}
2020-06-20