用于 MVC 3 的 Ioc 容器?

发布于 2024-10-17 12:11:55 字数 168 浏览 4 评论 0原文

我想为 MVC3 实现一个 IoC 容器。据我所知,现在使用的四个主要容器是 Windsor、StructureMap、Unity 或 NinJect。

我意识到每个人都可能有不同的意见,但有人知道哪个容器是最常用的,哪个提供了最多的功能。我想尝试将四个列表缩小到至少两个列表。

提前致谢。

I would like to implement an IoC container for MVC3. From what I can see the four main containers in use now are Windsor, StructureMap, Unity or NinJect.

I realize everyone is likely to have a different opinion but does anyone have an idea which container is the most used and which offers the most features. I would like to try and narrow down the list of four to at least a list of two.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我乃一代侩神 2024-10-24 12:11:55

据我所知,专门为 ASP.NET MVC 3 实现一个 IoC 容器很奇怪。您在上面命名的所有容器都适用于所有类型的应用程序 - WPF、WCF 服务、Web 应用程序。您能说得更具体一些吗?

From what I know, implement an IoC container specifically for ASP.NET MVC 3 is weird. All containers you named above work with all types of apps - WPF, WCF services, web apps. Can you please be more specific?

萌辣 2024-10-24 12:11:55

每当我需要使用包括 IoC 容器在内的第三方库时,我总是遵循以下步骤。

  1. 列出我需要的应用程序功能。
  2. 创建抽象层以获得更好的可测试性,并且如果该库未满足新功能或我想要更改的任何原因,将来可以轻松替换为更好的抽象层。 (对于 MVC 3,已经有抽象层 对于 IoC,因此您不需要此步骤
  3. 选择我最熟悉的。当然,它必须满足我在步骤(1)中需要的功能。
  4. 并重点关注产品的特性和功能。

谢谢。

Whenever I need to use third party libraries including IoC container, I always follow these steps.

  1. List down the features I need for the application.
  2. Create abstraction layer for better testability and easy to replace with better one in future if new feature is not fulfilled by that lib or whatever reason I want to change. (For MVC 3, there is already abstraction layer for IoC. So you don't need this step)
  3. Choose the one I most familiar. Of course, it must fulfill the features I need in step (1).
  4. And focus on the product's features and functionality.

Thanks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文