当前位置:  开发笔记 > 编程语言 > 正文

使用Castle Windsor注入依赖关系

如何解决《使用CastleWindsor注入依赖关系》经验,为你挑选了1个好方法。

考虑我有一个界面.

interface Interface {}  

现在我有2个实现此接口的类:

class ClassOne: I {}
class ClassTwo: I {}  

现在我想在第三个类中使用这两个类.

class child
{
    child(Interface objCA,Interface objCB)
    {}
}  

我无法使用Castle Windsor为子类注入依赖项.即使我注入它,它只传递一个对象到它们所有.那么如何使用Castle Windsor解决这个问题呢?



1> piotrwest..:

您可以使用Castle Windsor集合/数组/列表解析器来完成此操作.

看看:https://github.com/castleproject/Windsor/blob/master/docs/resolvers.md

这样,您将能够以略微不同的语法获得相同的行为.

像这样配置容器:

container.Kernel.Resolver.AddSubResolver(new CollectionResolver(container.Kernel));

注册CA和CB如下:

container.Register(Component.For().ImplementedBy());
container.Register(Component.For().ImplementedBy());

并将你的班级改为:

class child
{
    child(IEnumerable objs)
    {}
}

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有