我正在创建JSF应用程序并在其中使用一些hibernate的东西。我要做的就是将实体保存到数据库中,但我不断收到此异常:
JSF
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>
我在用:
有人知道可能在哪里吗?
你必须打电话 session.beginTransaction()
session.beginTransaction()
public void create(T entity) { Session session=getSessionFactory().getCurrentSession(); Transaction trans=session.beginTransaction(); session.save(entity); trans.commit(); }