MissingTransactionException при запуске NHibernate с Castle.Facilities.AutoTx - PullRequest
2 голосов
/ 22 июня 2011

Я пытаюсь настроить Castle Windsor с помощью NHibernate и Castle.Facilities.AutoTx, но у меня возникают проблемы с PerTransactionLifeStyleOption. Если я сделаю

var sessionFactory = Container.Resolve<Func<ISession>>();
var session = sessionFactory();

Я получаю следующее исключение (во второй строке выше):

Castle.Facilities.AutoTx.MissingTransactionException:
No transaction in context when trying to instantiate model 'NHibernate.ISession'
for resolve type 'NHibernate.ISession'. If you have verified that your call 
stack contains a method with the [Transaction] attribute, then also make sure 
that you have registered the AutoTx Facility.
    at Castle.Facilities.AutoTx.Lifestyles.PerTransactionLifestyleManagerBase.Resolve(CreationContext context) in d:\Builds\Castle.Transactions-beta\src\Castle.Facilities.AutoTx\Lifestyles\PerTransactionLifestyleManagerBase.cs:line 153
    at Castle.Facilities.AutoTx.Lifestyles.WrapperResolveLifestyleManager`1.Resolve(CreationContext context) in d:\Builds\Castle.Transactions-beta\src\Castle.Facilities.AutoTx\Lifestyles\WrapperResolveLifestyleManager.cs:line 143
    at Castle.MicroKernel.Handlers.DefaultHandler.ResolveCore(CreationContext context, Boolean requiresDecommission, Boolean instanceRequired)
    at Castle.MicroKernel.Handlers.AbstractHandler.Resolve(CreationContext context, Boolean instanceRequired)
    at Castle.MicroKernel.Handlers.AbstractHandler.Resolve(CreationContext context)
    at Castle.MicroKernel.DefaultKernel.ResolveComponent(IHandler handler, Type service, IDictionary additionalArguments)
    at Castle.MicroKernel.DefaultKernel.Resolve(Type service, IDictionary arguments)
    at Castle.Facilities.TypedFactory.TypedFactoryComponent.Resolve(IKernel kernel)
    at Castle.Facilities.TypedFactory.Resolve.Invoke(IInvocation invocation)
    at Castle.Facilities.TypedFactory.TypedFactoryInterceptor.Intercept(IInvocation invocation)
    at Castle.DynamicProxy.AbstractInvocation.Proceed()
    at Castle.Proxies.Func`1Proxy.Invoke()
    at IntegrationTest.NCVIB.WindsorIoC.LocalDbTest.get_Reader() in D:\Projects\NCVIB-GIT\NCVIB\src\IntegrationTest.NCVIB\WindsorIoC\LocalDbTest.cs:line 22
    at IntegrationTest.NCVIB.InspectionObjectMapTests.ReadWrite() in D:\Projects\NCVIB-GIT\NCVIB\src\IntegrationTest.NCVIB\InspectionObjectMapTests.cs:line 34

Вот компиляция вызовов установки, которые я делаю (на самом деле они распределены по нескольким различным установщикам):

container.AddFacility<AutoTxFacility>();
container.Register(Component.For<INHibernateInstaller>().Instance(new FluentNHibernateInstaller));
container.AddFacility<NHibernateFacility>(fac => fac.Option = DefaultSessionLifeStyleOption.SessionPerTransaction);

FluentNHibernateInstaller показано здесь:

public class FluentNHibernateInstaller : INHibernateInstaller
{
    public FluentConfiguration BuildFluent()
    {
        return Fluently.Configure()
            .Database(
                MsSqlConfiguration.MsSql2005
                    .DefaultSchema("dbo")
                    .ConnectionString(b => b.Is(ConnectionString ?? ConnectionStringChooser.GetConnectionString())))
            .Cache(c => c.UseQueryCache().ProviderClass<SysCacheProvider>())
            .Mappings(m => m.FluentMappings.AddFromAssemblyOf<UserMap>().Conventions.AddFromAssemblyOf<EnumConvention>())
            .ExposeConfiguration(
                c => c.SetProperty(Environment.SqlExceptionConverter, typeof (MsSqlExceptionConverter).AssemblyQualifiedName))
            .ExposeConfiguration(c => c.SetProperty(Environment.ShowSql, "true"));
    }

    public string ConnectionString { get; set; }

    public void Registered(ISessionFactory factory)
    {
    }

    public bool IsDefault
    {
        get { return true; }
    }

    public string SessionFactoryKey
    {
        get { return "default.sf"; }
    }

    public Maybe<IInterceptor> Interceptor
    {
        get { return Maybe.None<IInterceptor>(); }
    }
}

Ответы [ 2 ]

3 голосов
/ 02 августа 2011

Оказывается, что AutoTxFacility ДОЛЖЕН быть добавлен в контейнер до любого любого компонента, имеющего атрибут [Transaction].

Я добавлял средство в один из нескольких классов IWindsorInstaller, в котором порядок установки был «случайным», что приводило к установке средства ПОСЛЕ некоторых моих компонентов с транзакционными методами:

var container = new WindsorContainer();
container.Install(FromAssembly.This);

Но теперь я добавляю средство ДО установки из классов моего установщика:

var container = new WindsorContainer();
container.AddFacility<AutoTxFacility>();
container.Install(FromAssembly.This());

Вот как будет использоваться:

public class MyClass
{
    private readonly Func<ISession> _sessionFactory;

    public MyClass(Func<ISession> sessionFactory)
    {
       _sessionFactory = sessionFactory;
    }

    [Transaction]
    public virtual void UseTheSessionForSomething()
    {
        // The transaction (and session) will be initialized
        // because of the 
        //   [Transaction] attribute
        //   AND this method is virtual
        //   AND this instance was resolved from the container
        MethodWithinTransactionScope();            
    }

    public void MethodWithinTransactionScope()
    {
       // Method just needs to be invoked in the scope of a transaction
       var session = _sessionFactory();
       session.Get<Entity>(1);
    }
}

public void Test() 
{
   var myInstance = container.Resolve<MyClass>();
   myInstanace.UseTheSessionForSomething();
}
0 голосов
/ 22 июня 2011

Это исключение говорит;ответ заключается в добавлении транзакции вокруг метода со строкой кода: var session = sessionFactory();

Если вы получаете исключение и добавили [Transaction] для этого метода, то вы не разрешаете службу LocalDbTest должным образом.

Взгляните на мой быстрый старт для быстрого запуска: https://github.com/haf/Castle.Facilities.NHibernate/wiki/NHibernate-Facility---Quick-Start


Я сейчас читаю ваш код;), причина, по которой он отсутствовал, былаиз-за этой строки:

https://github.com/haf/Castle.Transactions/blob/master/src/Castle.Facilities.AutoTx/AutoTxFacility.cs#L86

Это известное «TODO», что вы должны зарегистрировать свое оборудование перед своими компонентами, и я думаю, что это также указано в кратком обзоре.

Приветствия

...