- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道 InstancePerOwned<TService>()
的正确用法是什么在 Autofac 中。在解决依赖关系时如何使用它?
最佳答案
public interface IAnotherService
{
int Id { get; set; }
string Lable { get; set; }
}
public class AnotherService : IAnotherService,IDisposable
{
public int Id { get; set; }
public string Lable { get; set; }
public AnotherService(/* loads of dependent components*/)
{
}
public override string ToString()
{
return string.Format("My Id is:{0} and my lable is {1}", Id, Lable);
}
public void Dispose()
{
// Another Service is Disposing ;
}
}
public interface IMyService
{
void DoSomething();
}
// MyService class depends on IAnotherService
// MyService class is a huge and long-lived class where we have just ommited lots of other implementations
public class MyService : IMyService
{
private readonly IAnotherService _anotherService;
public MyService(IAnotherService anotherService)
{
_anotherService = anotherService;
}
public Void DoSomething()
{
Console.WriteLine(_anotherService.ToString());
}
//
//
//
// The rest of the class
//
//
//
//
}
在上面的代码中,MyService 类依赖于 IAnotherService。所以在你的依赖注册中你会以某种方式说
builder.RegisterType<AnotherService>().As<IAnotherService>().InstancePerDependency();
这确保了任何时候使用 Autofac 实例化或解析 MyService 的实例时,都会在实例化 MyService 的生命周期内预先解析 AnotherService 的一个实例。
当 MyService 处于事件状态时,换句话说,它的父生命周期范围处于事件状态,_anotherService 需要处于事件状态,无论它是否在 MyService 的其余代码中使用。
请注意,服务的拥有实例是从刚刚创建的生命周期范围实例化的对象。
Owned<IAnotherService> _anotherService ;
这个对象(_anotherService)的好处是在它实例化之前
AnotherService 实例在步骤 1 中新创建的生命周期范围内实例化
新的 AnotherService 实例及其容器生命周期将被绑定(bind)并形成 Owned 实例并注入(inject)到 MyService 类。
在您不再需要 _anotherService 的 MyService 生命周期中的任何时候,您都可以像直接调用它的 Dispose() 方法一样
_anotherService.Dispose() ;
一旦你处置它,那个对象和绑定(bind)的生命周期以及那个生命周期的任何其他子对象或依赖对象都将消失并被释放。 所以你不必忍受不必要的 _anotherService 和它的依赖组件的负载
所以我们的 MyService 的构造函数部分应该像下面这样:
private readonly Owned<IAnotherService> _anotherService;
public MyService(Owned<IAnotherService> anotherService)
{
_anotherService = anotherService;
}
这意味着我们有一个生命周期绑定(bind)到另一个服务,另一个服务在其中实例化。 如果你想强制上面生命周期内的所有新创建的对象和解析的组件共享另一个服务的同一个实例那么你必须像这样在注册时使用 InstancePerOwned
builder.RegisterType<AnotherService>().As<IAnotherService>().InstancePerOwned<IAnotherService>();
并且一旦您将 AnotherService 注册为 InstancePerOwned,您就不能传递纯 IAnotherInstance,您必须像 Owned 一样传递它,否则您会得到异常。
您可以在 An Autofac Lifetime Primer 上阅读更多内容
编辑:修复了一个字符的拼写错误(编辑必须至少为 6 个字符!)
关于dependency-injection - 在 autofac 依赖注入(inject)中 InstancePerOwned 的正确用法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28205643/
我已阅读有关依赖注入(inject)的信息。然后来了 构造函数注入(inject), setter/getter 注入(inject) 二传手注入(inject) 接口(interface)注入(in
我正在研究依赖注入(inject)模式。我看过很多例子,其中一个典型的例子是使用 XxxService/XxxRepository 作为例子。但是在我看来,按照UML的概念,类XxxRepositor
我开始使用 Google Guice。 我有一个简单的问题: javax.inject 的 @Inject 注释和 com.google.inject 的 有什么区别@Inject 一个 ? 谢谢。
当使用构造函数注入(inject)工厂方法时,依赖的属性不会得到解析。但是,如果在解析依赖的组件之前解析了工厂方法,则一切都会按预期工作。此外,当仅使用属性注入(inject)或构造函数注入(inje
我有这样的事情: class Root { public Root(IDependency dep) {} } class Dependency:IDependency { p
听完Clean Code Talks ,我开始明白我们应该使用工厂来组合对象。因此,例如,如果 House有一个 Door和 Door有一个 DoorKnob , 在 HouseFactory我们创建
情况:我需要在一些 FooClass 中进行惰性依赖实例化,所以我通过 Injector类作为构造函数参数。 private final Injector m_injector; public Foo
在编写代码时,我们应该能够识别两大类对象: 注入(inject)剂 新品 http://www.loosecouplings.com/2011/01/how-to-write-testable-cod
这个问题是关于 Unity Container 的,但我想它适用于任何依赖容器。 我有两个具有循环依赖关系的类: class FirstClass { [Dependency] pub
如果我有 10 个依赖项我需要注入(inject)并且不想在构造函数中有 10 个参数,我应该使用哪种注入(inject)模式? public class SomeClass { privat
我在使用 Angular2 DI 时遇到了问题。我尝试将一个类注入(inject)另一个类,它引发了以下错误: 留言:"Cannot resolve all parameters for 'Produ
对依赖注入(inject)还很陌生,我想弄清楚这是否是一种反模式。 假设我有 3 个程序集: Foo.Shared - this has all the interfaces Foo.Users -
我正在尝试了解 Angular 14 的变化,尤其是 inject()我可以将模块注入(inject)功能的功能,我不需要为此创建特殊服务..但我想我弄错了。 我正在尝试创建一些静态函数来使用包 ng
希望这个问题不是太愚蠢,我试图掌握更高级的编程原理,因此试图习惯使用 Ninject 进行依赖注入(inject)。 因此,我的模型分为几个不同的 .dll 项目。一个项目定义了模型规范(接口(int
我最近一直在大量使用依赖注入(inject)、测试驱动开发和单元测试,并且开始喜欢上它。 我在类中使用构造函数依赖,这样我就可以为单元测试注入(inject)模拟依赖。 但是,当您实际需要生产环境中的
我有下面的代码来使用 Guice 进行依赖注入(inject)。第一个是使用构造函数注入(inject),而另一个是直接在字段上方添加 @Inject。这两种方式有什么区别吗? Guice官网似乎推荐
这个问题在这里已经有了答案: Angular2 Beta dependency injection (3 个答案) 关闭 7 年前。 我正在使用 angular2 测试版。并在使用 @Inject
有没有可能做这样的事情? (因为我尝试过,但没有成功): @Injectable() class A { constructor(private http: Http){ // <-- Injec
我很恼火必须通过 Constructor 传递管道对象,因为我想为业务实体或要传递的值保留构造函数参数。 所以我想通过 setter ,但只要这些 setter 没有被填充,我的包含依赖项的对象就不应
假设我有这个: SomePage.razor: @inject Something something @page "/somepage" My Page @code { // Using
我是一名优秀的程序员,十分优秀!