IoC容器冲突
在我当前的项目中,我使用 SolrNet 和 OAuth.Net。这两个库都使用公共服务定位器。 SolrNet 将自定义 IoC 容器实现设置为定位器提供程序。 OAuth.Net 的定位器提供程序在我的代码中设置(当前我使用的是示例中使用的 Windsor)。问题从这里开始,因为
ServiceLocator.SetLocatorProvider()
实际上是替换 ServiceLocator.Current 静态属性值。
有什么建议吗?在这种情况下,最佳实践是什么?
提前致谢, 赫里斯托
In my current project I'm using SolrNet and OAuth.Net. Both libraries use Common Service Locator. SolrNet set as a locator provider a custom IoC container implementation. The locator provider for OAuth.Net is set in my code (currently I'm using Windsor as it is used in the examples). And the problem starts here because
ServiceLocator.SetLocatorProvider()
actually is replacing the ServiceLocator.Current static property value.
Any advice? What are the best practices in such a scenario?
Thanks in advance,
Hristo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已经在使用 Windsor,请使用附带的 Windsor 工具 而不是内置容器。
If you're already using Windsor, set up SolrNet using the included Windsor facility instead of the built-in container.