spring .net用于控制台应用程序的nhibernate会话管理

时间:2012-04-01 11:05:57

标签: c# nhibernate spring.net spring-data

我知道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服务)中做了什么?

1 个答案:

答案 0 :(得分:3)

您将会话工厂公开为事务感知会话工厂,这意味着Spring会为所有正确包装在事务中的方法管理会话。要使用spring将事务中的数据访问方法包装起来,可以使用declarative (attribute driven)programmatic方法。