asp.net-mvc – SportStore:WebUI.WindsorControllerFactory.GetControllerInstance(System.Type:找不到合适的方法来覆盖

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – SportStore:WebUI.WindsorControllerFactory.GetControllerInstance(System.Type:找不到合适的方法来覆盖前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
试图通过Steve Sandersons的MVC书 – 但是在创建WindsorControllerFactory时遇到了困难.看起来该方法已从MVC1更改为MVC2.这是我在尝试编译项目时遇到的错误

‘WebUI.WindsorControllerFactory.GetControllerInstance(System.Type:找不到合适的方法来覆盖’.任何帮助都会受到赞赏 – 我无法超越这个!

这是代码 – 从书中转录:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. using Castle.Windsor;
  7. using Castle.Windsor.Configuration.Interpreters;
  8. using Castle.Core.Resource;
  9. using System.Reflection;
  10. using Castle.Core;
  11. using Castle.MicroKernel;
  12. namespace WebUI
  13. {
  14. public class WindsorControllerFactory : DefaultControllerFactory
  15. {
  16. WindsorContainer container;
  17. // The constructor:
  18. // 1. Sets up a new IoC container
  19. // 2. Registers all components specified in web.config
  20. // 3. Registers all controller types as components
  21. public WindsorControllerFactory()
  22. {
  23. // Instantiate a container,taking configuration from web.config
  24. container = new WindsorContainer(
  25. new XmlInterpreter(new ConfigResource("castle"))
  26. );
  27. // Also register all the controller types as transient
  28. var controllerTypes = from t in Assembly.GetExecutingAssembly().GetTypes()
  29. where typeof(IController).IsAssignableFrom(t)
  30. select t;
  31. foreach (Type t in controllerTypes)
  32. container.AddComponentWithLifestyle(t.FullName,t,LifestyleType.Transient);
  33. }
  34. // Constructs the controller instance needed to service each request
  35. protected override IController GetControllerInstance(Type controllerType)
  36. {
  37. return (IController)container.Resolve(controllerType);
  38. }
  39. }
  40. }


问候,
马丁

解决方法

由于有关竞争条件的不幸错误,GetControllerInstance已从ASP.NET MVC 1.0更改为ASP.NET MVC 2.

ASP.NET MVC 1.0中的签名是:

  1. protected virtual IController GetControllerInstance(
  2. Type controllerType);

在ASP.NET MVC 2中它是:

  1. protected virtual IController GetControllerInstance(
  2. RequestContext requestContext,Type controllerType)

对于这种特殊情况,您似乎只需要将方法的签名更改为:

  1. protected override IController GetControllerInstance(
  2. RequestContext requestContext,Type controllerType)
  3. {
  4. return (IController)container.Resolve(controllerType);
  5. }

潜在的竞争条件是RequestContext实例可以由多个同时请求共享,这将是一个主要的禁忌.幸运的是,似乎没有任何用户遇到过这个问题,但无论如何它在ASP.NET MVC 2中得到了修复.

猜你在找的asp.Net相关文章