0

我正在使用 MVC3 构建应用程序,当我想添加区域时遇到问题。

我正在添加一个 UsersArea 一切正常,但是当我尝试运行该网站时,我收到以下错误:

未找到关键用户控制器的组件

说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。

异常详细信息:Castle.MicroKernel.ComponentNotFoundException:未找到关键用户控制器的组件

源错误:

第 160 行:public IController CreateController(RequestContext context, string controllerName) 第 161 行:{ 第 162 行:return IoC.Resolve((controllerName + "Controller").ToLower()); 第 163 行:} 第 164 行:

这是我的温莎代码:

    protected override IWindsorContainer CreateContainer(string windsorConfig)
    {

        IWindsorContainer container = new WindsorContainer();

        container.Register(Component.For<IUnitOfWorkFactory>()
            .ImplementedBy<NHibernateUnitOfWorkFactory>());

        container.Register(Component.For<IProductRepository>()
            .ImplementedBy<ProductRepository>()
            .LifeStyle.Is(LifestyleType.Transient));

        container.Register(Component.For<ICustomerService>()
            .ImplementedBy<CustomerService>()
            .LifeStyle.Is(LifestyleType.Transient));

        container.Register(Component.For<ICustomerRepository>()
            .ImplementedBy<CustomerRepository>()
            .LifeStyle.Is(LifestyleType.Transient));

        container.Register(Component.For<ICategoryRepository>()
            .ImplementedBy<CategoryRepository>()
            .LifeStyle.Is(LifestyleType.Transient));

        container.Register(Component.For<IOrderRepository>()
            .ImplementedBy<OrderRepository>()
            .LifeStyle.Is(LifestyleType.Transient));

        container.Register(Component.For<ILogger>()
            .ImplementedBy<NLogLogger>()
            .LifeStyle.Is(LifestyleType.Transient));



        container.Register(AllTypes.Of<IController>()
             .FromAssembly(typeof(HomeController).Assembly)
             .Configure(t => t.Named(t.Implementation.Name.ToLower())
             .LifeStyle.Is(LifestyleType.Transient)));


        return container;
    }

    public class RhinoIoCControllerFactory : IControllerFactory
    {
      public IController CreateController(RequestContext context, string controllerName)
      {
          return IoC.Resolve<IController>((controllerName + "Controller").ToLower());
      }

      public void ReleaseController(IController controller)
      {
          IoC.Container.Release(controller);
      }

    public SessionStateBehavior GetControllerSessionBehavior(RequestContext requestContext, string controllerName)
    {
        return SessionStateBehavior.Default;
    }
    }
4

0 回答 0