-1

使用 NhibernateProfiler 我们已经确定我们正在为每个 http 请求创建一个 ISession。但是 ISessions 永远不会关闭。我们可以在 log 中看到 localSession.Close() 触发的位置。我们的配置文件中有什么东西会导致会话永远不会关闭吗?是否还有其他原因 localSession.Close() 不会物理关闭会话?我们在 NHibernate 的 2.1 上。

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
  <session-factory>
    <property name="connection.provider">JCDCHelper.DAL.Utilities.JCDCConnectionProvider, JCDCHelper.DAL</property>
    <property name="dialect">NHibernate.Dialect.Sybase</property>
    <property name="connection.release_mode">on_close</property>
    <property name="show_sql">true</property>
    <property name="connection.driver_class">JCDCHelper.DAL.Utilities.DataDirectSybaseDriver, JCDCHelper.DAL</property>
    <property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
    <property name="connection.connection_string_name">ProdSybase</property>
    <property name="current_session_context_class">web</property>
    </session-factory>
  </hibernate-configuration>

感谢您抽时间阅读。

4

1 回答 1

0

Are you Disposing the ISession? Wrapping it in a using statement?

于 2009-12-02T20:44:26.613 回答