5

私のasp.net WebApiプロジェクトは、サービス、コア、およびデータアクセス用の複数のアセンブリで構成されています。プロジェクトで Ninject を DI コンテナーとして使用するために、NuGet から Ninject.Web.Common パッケージを追加しました。次に、 IDependencyResolver を次のように実装しました。

public class NinjectDependencyResolver : NinjectDependencyScope, IDependencyResolver
{
    readonly IKernel kernel;

    public NinjectDependencyResolver(IKernel kernel) : base(kernel)
    {
        this.kernel = kernel;
    }

    public IDependencyScope BeginScope()
    {
        return new NinjectDependencyScope(this.kernel.BeginBlock());
    }
}

public class NinjectDependencyScope : IDependencyScope
{
    IResolutionRoot resolver;

    public NinjectDependencyScope(IResolutionRoot resolver)
    {
        this.resolver = resolver;
    }

    public object GetService(System.Type serviceType)
    {
        if (resolver == null)
            throw new ObjectDisposedException("this", "This scope has been disposed");

        var resolved = this.resolver.Get(serviceType);
        return resolved;
    }

    public System.Collections.Generic.IEnumerable<object> GetServices(System.Type serviceType)
    {
        if (resolver == null)
            throw new ObjectDisposedException("this", "This scope has been disposed");

        return this.resolver.GetAll(serviceType);
    }

    public void Dispose()
    {
        IDisposable disposable = resolver as IDisposable;
        if (disposable != null)
            disposable.Dispose();

        resolver = null;
    }
}

これが私の Ninject.Web.Common.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();
        kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
        kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();
        RegisterServices(kernel);

        GlobalConfiguration.Configuration.DependencyResolver = new NinjectDependencyResolver(kernel);
        return kernel;
    }

    /// <summary>
    /// Load your modules or register your services here!
    /// </summary>
    /// <param name="kernel">The kernel.</param>
    private static void RegisterServices(IKernel kernel)
    {
        kernel.Bind(x =>
            x.FromAssembliesMatching("WebApiTest.DataAccess.dll")
            .SelectAllClasses()
            .BindAllInterfaces()
            .Configure(config => config.InRequestScope()));

        kernel.Bind(x =>
            x.FromAssembliesMatching("WebApiTest.*.dll")
            .SelectAllClasses()
            .BindAllInterfaces()
            .Configure(config => config.InTransientScope()));
    }        
}

私の質問は NinjectDependencyResolver -> BeginScope() メソッドのコードについてです: return new NinjectDependencyScope(this.kernel.BeginBlock());

リポジトリ (WebApiTest.DataAccess.dll に実装) をリクエスト スコープにしたいと考えています。ネイト・コハリのこの投稿に出会いました。投稿が古いことは承知していますが、Activation Blocks に関する説明は、それがまだ現在の実装であるかどうか疑問に思います。

Ninject2 でスコープを処理する最後の方法が 1 つあります。それは、アクティベーション ブロックです。ブロックは、バインドで宣言されたスコープをオーバーライドする方法であり、代わりに、アクティブ化されたインスタンスをブロック自体に関連付けます。...

では、私のリポジトリの実際の範囲は?

また、BeginBlock() の使用はオプションであると思われますが、それを削除すると、コントローラーへの最初の呼び出しは成功しますが、後続の呼び出しは例外をスローします。

Ninject component ICache そのようなコンポーネントはカーネルのコンポーネントコンテナに登録されていません

どうして??

4

2 に答える 2

13

今の ところ、このNinjectDependencyResolverとこのNinjectDependencyScope の実装を使用してください

于 2012-11-15T15:48:48.047 に答える
1

リクエストスコープで依存関係を使用するには、Ninjectを使用して依存関係を設定するのではなく、を使用してリクエストから依存関係をInRequestScope()プルします。GetDependencyScope()

そのhttp://www.strathweb.com/2012/11/asp-net-web-api-and-dependencies-in-request-scope/に関するブログ投稿をまとめました

于 2012-11-15T16:07:24.817 に答える