城堡温莎代理抽象类与接口

时间:2011-05-23 02:02:40

标签: c# .net castle-windsor castle-dynamicproxy

我有以下情况:

public interface IFoo 
{
    void Foo1();

    void Foo2(); 
}

public abstract class Foo : IFoo
{
    public void Foo1() { }

    public abstract void Foo2();
}

我想为IFoo注册一个服务,由Foo实现,但是有一个拦截器来处理对未实现的抽象成员的调用。所以,我可以这样做:

container.Register(Component.For<IFoo>()
.ImplementedBy<Foo>().Interceptors<MyInterceptor>());

但是我尝试激活我的组件时遇到以下异常:

"Instances of abstract classes cannot be created."

   at Castle.MicroKernel.ComponentActivator.DefaultComponentActivator.CreateInstance(CreationContext context, Object[] arguments, Type[] signature)
   at Castle.MicroKernel.ComponentActivator.DefaultComponentActivator.Instantiate(CreationContext context)
   at Castle.MicroKernel.ComponentActivator.DefaultComponentActivator.InternalCreate(CreationContext context)
   at Castle.MicroKernel.ComponentActivator.AbstractComponentActivator.Create(CreationContext context)
   at Castle.MicroKernel.Lifestyle.AbstractLifestyleManager.Resolve(CreationContext context)
   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.Resolvers.DefaultDependencyResolver.ResolveServiceDependency(CreationContext context, ComponentModel model, DependencyModel dependency)

我注意到以下成功的作品......

Component.For<Foo>().Forward<IFoo>().Interceptors<MyInterceptor>()

然后我的拦截器最终看到了Foo,而不是IFoo作为拦截时的TargetType ......这不是我想要的。

有关如何完成此任务的任何建议?

感谢。

1 个答案:

答案 0 :(得分:1)

我想如果你指定:

Component.For<IFoo, Foo>().Interceptors<MyInterceptor>()

这将有效。

您最初遇到此问题的原因是因为Windsor为服务(即接口)而不是类(它不是服务)创建代理,并且它尝试正常实例化类,这显然是不可能的这个班是抽象的。

这就是为什么如果你将类指定为一个服务,那么该类也将被代理,这一切都将起作用。

关于你的上一句话,你不能吃你的蛋糕也不能吃。如果要代理该类,则该类是代理的目标。