码迷,mamicode.com
首页 > 其他好文 > 详细

Autofac系列二、解析服务

时间:2020-01-16 22:08:41      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:other   com   component   resolve   optional   exce   red   依赖   内存   

一、解析服务

在注册完组件并暴露相应的服务后,可以从创建的容器或其子生命周期中解析服务,让我们使用Resolve()方法来实现:

var builder = new ContainerBuilder();
builder.RegisterType<MyComponent>().As<IService>();
var container = builder.Build();

using(var scope = container.BeginLifetimeScope())
{
  var service = scope.Resolve<IService>();
}

我们应该注意到示例是从生命周期中解析服务而非直接从容器中,当然,你也应该这么做。

    有时在我们的应用中也许可以从根容器中解析组件,然而这么做有可能会导致内存泄漏。推荐你总是从生命周期中解析组件。以确保服务实例被妥善的释放和垃圾回收。

解析服务时,Autofac自动链接起服务所需的整个依赖链上不同层级并解析所有的依赖来完整的构建服务,如果你有处理不当的循环依赖或缺少了必须的依赖,你将得到一个DependencyResolutionException.

如果你不清楚一个服务是否被注册了,你可以通过ResolveOptional()或TryResolve()尝试解析:

// If IService is registered, it will be resolved; if
// it isn‘t registered, the return value will be null.
var service = scope.ResolveOptional<IService>();

// If IProvider is registered, the provider variable
// will hold the value; otherwise you can take some
// other action.
IProvider provider = null;
if(scope.TryResolve<IProvider>(out provider))
{
  // Do something with the resolved provider value.
}

ResolveOptional()和TryResolve()本质上都只是保证某个特定的服务已成功注册。如果该组件已注册就可以解析成功。如果解析本身失败(例如某些必需的依赖未注册),你依然会得到DependencyResolutionException。如果你不清楚服务解析本身是否会成功并需要在解析成功或失败时进行不同的操作,将Resolve()包裹在try..cath块中。

Autofac系列二、解析服务

标签:other   com   component   resolve   optional   exce   red   依赖   内存   

原文地址:https://www.cnblogs.com/mantishell/p/12203165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!