1

我在 Hibernate 中面临一个问题。这是代码。

    Configuration cfg = new Configuration().configure();
    SessionFactory factory = cfg.buildSessionFactory();
    Session session = factory.openSession();

    Transaction trans = session.beginTransaction();
    trans.begin();
    Session session2 = factory.getCurrentSession();
    System.out.println(session2.isConnected());

    trans.commit();

在我的 cfg 文件中

  <session-factory>
    <property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
    <property name="hibernate.connection.url">jdbc:sqlserver://localhost:1433</property>
    <property name="hibernate.connection.username">username</property>
    <property name="connection.password">password</property>
    <property name="connection.pool_size">5</property>
    <property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
    <property name="hibernate.current_session_context_class">thread</property>
    <property name="show_sql">true</property>
    <property name="hbm2ddl.auto">false</property>
    <mapping resource="Test.hbm.xml"/>
</session-factory>

当我使用上面的代码运行应用程序时,它给了我一个异常说“org.hibernate.HibernateException:isConnected is not valid without active transaction”

我不知道它在内部执行什么行为。请有任何想法。

4

1 回答 1

2

如果您查看SessionFactory.html#getCurrentSession的 Java 文档

获取当前会话。确切的“当前”含义的定义由配置为使用的 CurrentSessionContext impl 控制。

所以你sessionsession2是两个不同的会话。所以你必须开始交易session2才能访问isConnected()

但是,如果您曾经 getCurrentSession()检索第一个会话,那么第二次getCurrentSession()将返回相同的实例。

Session session = factory.getCurrentSession();//Use getCurrentSession rather than openSession
Transaction trans = session.beginTransaction();
trans.begin();

Session session2 = factory.getCurrentSession();//Same session will be returned.

System.out.println(session2.isConnected());
trans.commit();
于 2012-10-10T11:05:03.360 回答