所以我有一个带有普通控制器的AngularJs / MVC项目,并决定将更多内容移到SPA应用程序并添加WebApi2以将数据传递回我的UI而不是使用MVC.
在我的Global.asax中,我的MVC项目有以下内容:
DependencyResolver.SetResolver(new StructureMapDependencyResolver(container));
我的WebApiController有一个带有IRepository的构造函数,可以与数据库通信并获取一些实体.当我的AngularJS Web应用程序调用控制器时,断点从未命中,并且我收到的服务器500错误信息非常少.
- Public class MyController : ApiController
- {
- public MyController (IThingRepository thingrepository)
- {
- ....
- }
- }
我开始看到如下错误:
“ExceptionType”: “System.ArgumentException”,“Message”: “Type
‘MyProject.Web.Controllers.MyController’ does not have a default
constructor”
发生这种情况是因为依赖项解析对WebApi控制器不起作用. StructureMap没有找到构造函数,也无法解析IThingRepository.
WebApi和MVC的工作方式不同,依赖解析机制略有不同. Global.asax代码“DependencyResolver.SetResolver”适用于MVC但不适用于WebAPi.那么我们如何才能实现这一目标呢?
>安装nuget包StructureMap.MVC5,它具有管道以使其工作.
Install-Package StructureMap.MVC5
>创建一个适用于MVC和WebApi的新StructureMapDependencyResolver类
- public class StructureMapDependencyResolver : StructureMapDependencyScope,IDependencyResolver
- {
- public StructureMapDependencyResolver(IContainer container) : base(container)
- {
- }
- public IDependencyScope BeginScope()
- {
- IContainer child = this.Container.GetNestedContainer();
- return new StructureMapDependencyResolver(child);
- }
- }
>更新Global.asax代码:
- //StructureMap Container
- IContainer container = IoC.Initialize();
- //Register for MVC
- DependencyResolver.SetResolver(new StructureMapDependencyResolver(container));
- //Register for Web API
- GlobalConfiguration.Configuration.DependencyResolver = new StructureMapDependencyResolver(container);
有关正在发生的事情的完整说明,请查看ASP.NET MVC 4,Web API and StructureMap上的此博客文章