所以我花了一些时间在ASP上。. NET MVC 2(目前坚持使用Visual Studio 2008),现在已经转向使用Ninject 2.2及其MVC集成。我已经从以下位置下载了Ninject 2.2和Ninject. web . mvc:
https://github.com/downloads/ninject/ninject/Ninject-2.2.0.0-release-net-3.5.zip
https://github.com/downloads/ninject/ninject.web.mvc/Ninject.Web.Mvc2-2.2.0.0-release-net-3.5.zip
并在我的MVC 2项目中引用它们。我的Global.asax.cs文件看起来像这样(几乎就是Ninject.Web.Mvc README所说的):
using System;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Ninject.Web.Mvc;
using Ninject;
namespace Mvc2 {
public class MvcApplication : NinjectHttpApplication {
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
}
protected override void OnApplicationStarted() {
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
}
protected override IKernel CreateKernel() {
var kernel = new StandardKernel();
kernel.Bind<IFoo>().To<Foo>();
return kernel;
}
}
}
和一个home控制器,看起来像这样:
using System;
using System.Web;
using System.Web.Mvc;
namespace Mvc2.Controllers {
public class HomeController : Controller {
private readonly IFoo foo;
public HomeController(IFoo foo) {
this.foo = foo;
}
public ActionResult Index() {
ViewData["Message"] = "Welcome to ASP.NET MVC!";
return View();
}
}
}
现在,每次我运行我的项目并访问'/'时,我都会得到一个黄色的死机屏幕,并显示一条消息:"没有为这个对象定义无参数构造函数。"Ninject似乎没有解析我的Foo服务并把它注入HomeController。我想我错过了一些非常明显的东西,但我只是没有看到它。
我如何让Ninject注入Foo到HomeController,而不使用Ninject属性?
Me:您能提供更多关于IFoo服务实现的信息吗?它是否满足了所有的依赖关系?
我自己:嗯,没有。我没有绑定它的依赖项。天哪,错误信息和堆栈跟踪是误导!
所以我的错误是我没有绑定IFoo实现的一个依赖项,所以Ninject默默地失败了,并试图继续它的快乐之路。这真的很不幸,因为一旦我偏离了一个简单的设置,它可能会导致一些非常奇怪的行为。我想我的下一个问题应该是,我如何让Ninject尽早失败,并提供有关错误的良好信息?但是现在我至少可以继续做下去了