2

我了解 spring 可以为您管理会话,如果配置如下:

<object name="SessionFactory"
                    type="MyApp.DAL.DAOs.SessionFactoryObject, Leverate.Crm.CrmService.DAL">
<!--My class which inherits from LocalSessionFactoryObject and defines the mapping assemblies to be used--> 

    <property name="ExposeTransactionAwareSessionFactory" value="true" />
    <property name="DbProvider" ref="DbProvider"/>
    <property name="HibernateProperties">
      <dictionary>
        <entry key="cache.use_second_level_cache" value="false"/>
        <entry key="command_timeout" value="180"/>
        <entry key="connection.provider" value="NHibernate.Connection.DriverConnectionProvider"/>
        <entry key="dialect" value="NHibernate.Dialect.MsSql2005Dialect"/>
        <entry key="connection.driver_class" value="NHibernate.Driver.SqlClientDriver"/>

      </dictionary>
    </property>
    <property name="SchemaUpdate" value="false"/>
  </object>

    <db:provider id="DbProvider"
                   provider="SqlServer-1.1"
                   connectionString="Data Source=local;Initial Catalog=northwind;Trusted_Connection=Yes;"/>

问题是,使用SessionFactory.GetCurrentSession()会引发'No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here'异常。

我看到一些答案说在网络环境中你必须使用openSessionInView(或类似的)httpModule。但是你在控制台应用程序(或 Windows 服务,就此而言)做什么?

4

1 回答 1

3

您将会话工厂公开为事务感知会话工厂,这意味着 Spring 为您管理正确包装在事务中的所有方法的会话。要使用 spring 将数据访问方法包装在事务中,您可以使用声明性(属性驱动)编程方法。

于 2012-04-01T11:27:21.943 回答