我正在尝试在具有NancyFX
/TinyIOC
的项目上实现选项模式(如此处建议),但它不起作用。
我正在Startup.cs.ConfigureServices
方法上注册选项,但是当我尝试在我的类上注入设置时TinyIoc
抛出:
Nancy.TinyIoc.TinyIoCResolutionException: 无法解析类型: AppSettings.
我认为这是因为选项模式使用Microsoft.Extensions.DependencyInjection
但Nancy
使用TinyIoc
作为默认值,因此TinyIoc
尝试解决IOptions<AppSettings>
并失败。
有没有办法将IOptions<>
与TinyIoc
一起使用?
这是我的代码:
启动.cs
public void ConfigureServices(IServiceCollection services)
{
services.AddOptions();
services.Configure<AppSettings>(Configuration.GetSection("AppSettings"));
}
我的服务.cs
public SearchService(IOptions<AppSettings> config)
{
}
错误:
应用程序启动异常: System.Reflection.TargetInvocationException:已抛出异常 按调用的目标。
System.InvalidOperationException: 尝试满足其中一个依赖项时出错 在合成过程中,请确保您已注册所有新的 容器中的依赖项并检查内部异常以获取更多信息 详。
Nancy.TinyIoc.TinyIoCResolutionException: 无法 解析类型:南希.南希引擎
Nancy.TinyIoc.TinyIoCResolution异常:无法解析类型: Nancy.Routing.DefaultRequestDispatcher
Nancy.TinyIoc.TinyIoCResolution异常:无法解析类型: Nancy.Routing.DefaultRouteResolver
Nancy.TinyIoc.TinyIoCResolution异常:无法解析类型: Nancy.Routing.RouteCache
Nancy.TinyIoc.TinyIoCResolution异常:无法解析类型: 我的项目.我的服务
Nancy.TinyIoc.TinyIoCResolutionException: 无法解析类型: Microsoft.Extensions.OptionsModel.IOptions'1[[MyProject.AppSettings, MyProject, version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]
一些额外信息:
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.Owin": "1.0.0-rc1-final",
"Nancy": "1.4.3",
"Microsoft.Framework.ConfigurationModel": "1.0.0-beta4",
"Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta4",
"Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final"
},
DNX 运行时版本:
1.0.0-rc1-update1 mono
谢谢。
其实我找到了答案。我必须创建一个自定义引导程序并在 TinyIoc 上注册已解决的依赖项:
启动.cs:
public void Configure(IApplicationBuilder app)
{
app.UseOwin(x => x.UseNancy(new NancyOptions
{
Bootstrapper = new CustomBootstrapper(app)
}));
}
CustomBootstrapper.cs:
protected override void ConfigureApplicationContainer(TinyIoCContainer container)
{
base.ConfigureApplicationContainer(container);
container.Register<IOptions<AppSettings>>(_app.ApplicationServices.GetService<IOptions<AppSettings>>());
}