3

我们正在使用 NHibernate 和 Castle 和 Validators 项目构建一个项目。我正在尝试将其升级到所有这些之间的最新支持版本。我已经让应用程序正常工作,但是在我的一些单元测试中我得到了下面的异常。这些测试实际上并不以任何方式触及数据库,而是围绕映射实体测试功能。

    NHibernate.Bytecode.ProxyFactoryFactoryNotConfiguredException: 
    The ProxyFactoryFactory was not configured.
    Initialize 'proxyfactory.factory_class' property of the session-factory
    configuration section with one of the available NHibernate.ByteCode providers.
    Example:
    <property name='proxyfactory.factory_class'>
    NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu
    </property>
    Example:
    <property name='proxyfactory.factory_class'>
    NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle
    </property>
    [Continues down stack trace...]

下面是我的配置文件:

   <?xml version="1.0" encoding="utf-8" ?>
   <hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
    <session-factory name="Linx2">
  <property
        name="connection.driver_class">NHibernate.Driver.NpgsqlDriver</property>
      <property name="dialect">Linx2.Common.Framework.PostgreSQL83Dialect, 
        Linx2.Common.Framework</property>
  <property name="connection.connection_string">[Hidden so I don't get fired.]</property>
      <property name="adonet.batch_size">10</property>
  <property name="show_sql">false</property>
  <property name="use_outer_join">true</property>
  <property name="command_timeout">60</property>
  <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
      <property name="proxyfactory.factory_class">
         NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle
       </property>
        <property name="connection.release_mode">after_transaction</property> 
        <mapping assembly="NHibernate.Collection.Observable" />
    </session-factory>
   </hibernate-configuration>

我在那里有配置映射,它在应用程序中工作。我还包括 NHibernate.ByteCode dll。然而,在这些测试中,它被忽略了。我尝试在单个测试中手动启动配置,甚至在测试中停止并确认配置具有该项目。但是,在下面的 IsInitialized 调用代码中会引发异常。

    if (NHibernateUtil.IsInitialized(ChildAssociations))
                {
                    ChildAssociations.ForEach(x => isValid = isValid && x.Element.IsValid(validatedObjects));
                }

这以前在 NHibernate 2.2 构建中没有问题。任何帮助将不胜感激。在过去的 4 个小时里,我一直在努力解决这个问题。

4

1 回答 1

1

显然 NHibernateUtil 不仅需要初始化配置,还需要构建会话工厂。我能够通过手动运行配置并在测试中构建会话工厂来使其工作。在应用程序中这不是问题,因为会话工厂是事先构建的。

var cfg = new NHibernate.Cfg.Configuration().Configure();
var sessionFactory = cfg.BuildSessionFactory();
于 2012-02-02T18:53:59.503 回答