Ninject不使用Asp.NET MVC 4 C#加载依赖项

本文关键字:加载 依赖 MVC NET Asp Ninject | 更新日期: 2023-09-27 18:05:42

我正在使用NinjectWebCommon在我的控制器中执行注入。我通过Nuget安装了这个包,他在我的App_Start中创建了NinjectWebCommon.cs,正如它在自己的文档中所说的那样。我需要知道为什么它不能正常工作,因为我一步一步地遵循文档。以下是一些片段:

NinjectWebCommon.cs:

public static class NinjectWebCommon
    {
        private static readonly Bootstrapper bootstrapper = new Bootstrapper();
        /// <summary>
        /// Starts the application
        /// </summary>
        public static void Start()
        {
            DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
            DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
            bootstrapper.Initialize(CreateKernel);
        }
        /// <summary>
        /// Stops the application.
        /// </summary>
        public static void Stop()
        {
            bootstrapper.ShutDown();
        }
        /// <summary>
        /// Creates the kernel that will manage your application.
        /// </summary>
        /// <returns>The created kernel.</returns>
        private static IKernel CreateKernel()
        {
            var kernel = new StandardKernel();
            try
            {
                kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
                kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();
                RegisterServices(kernel);
                return kernel;
            }
            catch
            {
                kernel.Dispose();
                throw;
            }
        }
        /// <summary>
        /// Load your modules or register your services here!
        /// </summary>
        /// <param name="kernel">The kernel.</param>
        private static void RegisterServices(IKernel kernel)
        {
            //kernel.Load(AppDomain.CurrentDomain.GetAssemblies());
            kernel.Bind<IFooService>().To<FooService>();
        }
    }

控制器:

public class FooController : Controller
    {
        private readonly IFooService fooService;
        public FooController(IFooService fooService)
        {
            this.fooService = fooService;
        }
        public ActionResult Index()
        {
            return View(this.fooService.All());
        }
    }

这会产生以下错误:

激活IFooService时出错没有可用的匹配绑定,并且该类型不可自绑定。激活路径:
2( 注入的构造函数的参数fooService中的依赖项IFooService类型FooController
1( FooController 请求

建议:
1( 请确保已为定义绑定IFooService
2( 如果绑定是在模块中定义的,请确保该模块已加载到内核中
3( 确保您没有意外创建了多个内核
4( 如果您正在使用构造函数参数,确保参数名称与构造函数参数名称
5( 如果您使用的是自动模块加载时,确保搜索路径和筛选器正确。

使用IoC来解析实例,但它只在我的HomeController中工作,如果我使用完全相同的代码(使用IoC(更改为另一个控制器,它会再次生成错误。使用IoC遵循代码。

使用IoC:

private readonly IFooService fooService;
        public HomeController()
        {
            this.fooService = IoC.Instance.Resolve<IFooService>();
        }
        public ActionResult Index()
        {
            ViewBag.MyFoos = this.fooService.All();
            return View();
        }

生成以下错误:

没有匹配的绑定可用,并且该类型不可自绑定。

激活IFooService时出错没有匹配的绑定可用,并且该类型是不可自绑定的。

激活路径:
1( IFooService 请求

建议:

1( 确保您已经为IFooService定义了绑定
2( 如果绑定在模块中定义,请确保该模块已加载到内核
3( 确保您没有意外创建多个内核4( 如果使用构造函数参数,请确保参数名称与构造函数参数名称匹配。5( 如果你是使用自动模块加载,确保搜索路径和筛选器对的

Ninject不使用Asp.NET MVC 4 C#加载依赖项

您确定有ISetorService的绑定吗?我在你发布的代码中没有看到一个。

我通过加载应用程序层次结构的所有"NinjectModule"解决了这个问题。

我认为只加载主模块就足够了,然后在"NinjectWebCommon"中创建了另一个staticco方法,只是为了分离职责和组织代码。以下是使用的代码:

var kernel = new StandardKernel(new Repository(), new Service(), new ValidationAndBusinessRules());

它们在创建内核时携带所有的存储库、服务和验证器。

private static void RegisterObrigatoryServices(IKernel kernel)
        {
            kernel.Bind<IIdentityProvider>().To<ServiceIdentityProvider>();
            kernel.Bind<Guid>().ToMethod(ctx => default(Guid)).Named("CurrentProcessId");
            kernel.Bind<ISession>().ToMethod(ctx =>
            {
                SessionPoolManager.Update();
                Guid processId = kernel.Get<Guid>("CurrentProcessId", new Parameter[] { });
                if (processId == default(Guid))
                {
                    return SessionFactoryBuilder.SessionFactory(kernel.Get<IIdentityProvider>()).OpenSession();
                }
                else
                {
                    ISession session = SessionPoolManager.Get(processId);
                    if (session == null)
                    {
                        session = SessionFactoryBuilder.SessionFactory(kernel.Get<IIdentityProvider>()).OpenSession();
                        SessionPoolManager.Register(processId, session);
                    }
                    return session;
                }
            });
        }

方法,只记录所需的依赖关系。

所有这些代码基本上都是本机代码,并且已经插入到NugetNinject.MVC4包中(通过VisualStudio中的package Manager控制台安装(。这个包在App_Start目录中插入了一个名为"NinjectWebCommon"的类,正是我做了这些更改。

控制器被设置为发送包文档,如下所示:

public class HomeController : Controller
        {
            private readonly IFooService fooService;
            public HomeController(IFooService fooService)
            {
                this.fooService = fooService; //Daqui para frente é possível usar normalmente o service.
            }
        }