依赖注入 – Castle Windsor不能注入一系列接口类型

前端之家收集整理的这篇文章主要介绍了依赖注入 – Castle Windsor不能注入一系列接口类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个类在构造函数中接受一组接口:
public class Foo<T1,T2> : IFoo<T1,T2>
{
    public Foo(IBar[] bars)
    {
        ...
    }
}

我的容器注册如下:

container.Register(AllTypes.Pick().FromAssemblyNamed("...")
                    .WithService.FirstInterface());
container.AddComponent("foo",typeof(IFoo<,>),typeof(Foo<,>));

我有几个实现的IBar,容器可以肯定地找到它们,因为调用ServiceLocator.Current.GetAllInstances< IBar>()工作正常.

但是,如果我尝试获得一个IFoo的实例,它会抛出一个异常,说它无法满足这个未被注册的“deoendency …”.

如果我更改构造函数以使单个IBar实例工作正常.

有任何想法吗?

添加ArrayResolver:
container.Kernel.Resolver.AddSubResolver(new ArrayResolver(container.Kernel));
原文链接:https://www.f2er.com/javaschema/281805.html

猜你在找的设计模式相关文章