我正在尝试使用Bootstrapper为我的应用程序,ioc,automapper,配置等进行初始化。
我需要一些指导如何使用bootstrapper在asp.net webapi中正确设置ninject。使用以下配置,我的apicontroller无法解析IMyService依赖项。看起来它正在使用不同的ninject kernal。
我的NinjectWebCommon
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>();
GlobalConfiguration.Configuration.DependencyResolver = new MyResolver(kernel);
RegisterServices(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)
{
}
}
bootstrapper ninject registration
public class DIRegistration : INinjectRegistration
{
public void Register(IKernel container)
{
container.Bind<IMyService>().To<MyService>().InTransientScope();
}
}
public class MyService: IMyService
{
public string GetString()
{
return "My String!!!!!";
}
}
public interface IMyService
{
string GetString();
}
答案 0 :(得分:1)
我为解决问题所做的是将bootstrapper.Initialize(CreateKernel);
移动到我为NinjectWebBootstrap创建的IStartupTask实现。基本上使用Bootstrapper框架注入的IKernal并运行我的注册,最后设置asp.net webapi,然后使用注入的IKernal实例中的自定义解析设置DepdendencyResolver。
答案 1 :(得分:0)
DIRegistration
。所以不存在绑定。
答案 2 :(得分:0)
我试图直接在数据库中更新值,但是我的WCF中的值没有更新,它在svc文件中使用Ninject使用实体框架 - 与https://github.com/ninject/ninject.extensions.wcf/tree/master/src/Examples/WcfTimeService中使用bootstraping的方式相同。
如果发现如果我回收IIS应用程序池,数据将刷新并按预期工作。我想它是IIS和Ninject创建这个缓存问题。你有什么想法吗?