如何在 MVC 应用程序中设置 Unity 容器
我在 ASP.NET MVC3 应用程序中使用 Unity 容器时遇到问题。
我有几个带有接口及其实现的项目。所有具体类型绑定的接口都是在应用程序启动方法中执行的。
我对这种方法有几个问题:
1)如何处理 MVC 应用程序不直接需要但由它使用的类(存储库使用 ContextManager 检索上下文实例)需要的类型的注册。如果此类位于 mvc 应用程序未使用的程序集中,我将必须添加对它的引用。
2)如何共享配置的容器?我应该使用静态类创建单独的程序集,并将其存储由 mvc 应用程序容器创建吗?
3)什么样的unity容器使用方式可能会带来跨线程问题?如何注册单例,以便它们仅在该线程(Web 服务器调用)等中可用。
I have troubles consuming unity container in ASP.NET MVC3 application.
I have several project with interfaces and their implementation. All interface to concreete type binding is performed in the application startup method.
I have several problems with this aproach:
1) How to handle registration of types that are not dirrectly required by MVC application but by classes that it using (Repository uses ContextManager to retrieve context instance). If this class is located in assembly that is not used by mvc app, I will have to add reference to it.
2) How to share configured container? Should I create separate assembly with static class wich will store created by mvc app container?
3) What kind of unity container usage can possibly bring cross thread problems? How to register singletons so that they will be avaliable only in this thread (web server call) etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
bin
文件夹中,以便 ASP.NET MVC 应用程序能够以某种方式了解它们。只需将 DI 框架配置外部化到 ASP.NET MVC 应用程序中的一个位置即可。bin
folder anyways so the ASP.NET MVC application will know about them one way or another. Just externalize your DI framework configuration into a single place in your ASP.NET MVC application.