5

私のasp.netWebApiプロジェクトは、サービス、コア、およびデータアクセス用の複数のアセンブリで構成されています。プロジェクトでDIコンテナとしてNinjectを使用するために、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.FromAssembliesInPath(AppDomain.CurrentDomain.RelativeSearchPath)
            .SelectAllIncludingAbstractClasses()
            .BindDefaultInterface()
            .Configure(config => config.InSingletonScope()));

        //kernel.Bind(x => 
        //    {
        //        x.FromAssembliesMatching("*")
        //        .SelectAllClasses()
        //        .BindDefaultInterface()
        //        .Configure(b => b.InTransientScope());
        //    });
        //kernel.Load()
        //kernel.Bind<ISecurityService>().To<SecurityServiceImplementation>();

        //kernel.Bind(x => x
        //    .FromAssembliesMatching("*")
        //    .SelectAllClasses()
        //    .BindDefaultInterface());
        //.Configure(b => b.InTransientScope()));
        //kernel.Load("*.dll");
    }        
}

例外は

[ActivationException: Error activating IHostBufferPolicySelector
No matching bindings are available, and the type is not self-bindable.
Activation path:
1) Request for IHostBufferPolicySelector

さまざまな登録(コメントアウト)を使用しましたが、機能しません。NinjectWebCommon.cs-> CreateKernel()メソッドのブレークポイントがヒットし、GetService(System.Type serviceType)メソッドのブレークポイントもヒットします。AppDomain.CurrentDomain.RelativeSearchPathは、アプリのbinディレクトリに解決され、IHostBufferPolicySelectorタイプを含むSystem.Web.Http.dllを含むすべてのdllが含まれます。

Ninject.Extensions.Conventionsを適切に使用して、タイプ解決のためにカーネルをセットアップするにはどうすればよいですか?

4

3 に答える 3

6

Remoによる回答とFilipによるコメントのヒントと、かなりのデバッグ時間から、GetService()実装のthis.resolver.Get(serviceType)代わりにの使用が私の状況の原因であることがわかりました。this.resolver.TryGet(serviceType)

これについての詳細なブログ投稿を計画していますが、不足しているのは、次の行を使用してNinjectDependencyResolverをMVCに接続する GlobalConfiguration.Configuration.DependencyResolver = new NinjectDependencyResolver(kernel); と、フレームワークレベルの依存関係バインディング(IHostBufferPolicySelectorなど)を定義しない場合、例外が発生します。Ninjectで解決されない場合の、一部のGet()フレームワークレベルの依存関係のメソッド。を使用しても例外は発生せず、フレームワークはIHostBufferPolicySelectorなどの未解決の(別名null)依存関係のデフォルトの依存関係にフォールバックします。したがって、オプションはTryGet()

  1. TryGet()メソッドを使用して、依存関係を解決します。
  2. Get in Try / Catchをラップして、例外を破棄します。
于 2012-11-14T17:17:58.403 に答える
2

この投稿を試してください。Ninject例外をキャッチする代わりに、すべてのWebApi呼び出しの例外をキャッチします。http://blog.greatrexpectations.com/2013/05/15/exception-handling-for-web-api-controller-constructors/ スタックトレースでは、例外が発生したコンストラクターが表示されます。

于 2013-08-09T14:15:38.437 に答える
1

クラスがないHostBufferPolicySelectorためIHostBufferPolicySelector、デフォルトのインターフェイスであるクラスはありません。BindAllInterfacesまたはを試してみてくださいBindDefaultInterfaces

于 2012-11-12T16:30:25.590 に答える