依赖注入之单一接口多个实现
前言
最近又在项目中碰到需要将原本单实现的接口改造成多个实现的场景,这里记录一下常见的几种改法。
假设已经存在如下接口ICustomService
和其实现CustomService
,由于只有一种实现,注入和使用非常容易。
public interface ICustomService | |
{ | |
void MethodA(); | |
void MethodB(); | |
} | |
public class CustomService: ICustomService | |
{ | |
public void MethodA() | |
{ | |
} | |
public void MethodB() | |
{ | |
} | |
} | |
//注入 | |
builder.Services.AddTransient<ICustomService, CustomService>(); | |
//使用 | |
private readonly ICustomService _customService; | |
public CustomController(ICustomService customService) | |
{ | |
_customService = customService; | |
} |
现在我们需要增加一种实现。
使用多个接口实现
我们可以将原ICustomService
内的方法移到到一个新的基接口,共享出来,需要多少个实现,就创建多少个空接口继承该基接口。
//基接口 | |
public interface ICustomBaseService | |
{ | |
void MethodA(); | |
void MethodB(); | |
} | |
//多个空接口 | |
public interface ICustomService : ICustomBaseService | |
{ | |
} | |
public interface ICustomServiceV2 : ICustomBaseService | |
{ | |
} | |
//第一种实现 | |
public class CustomService: ICustomService | |
{ | |
public void MethodA() | |
{ | |
} | |
public void MethodB() | |
{ | |
} | |
} | |
//第二种实现 | |
public class CustomServiceV2: ICustomServiceV2 | |
{ | |
public void MethodA() | |
{ | |
} | |
public void MethodB() | |
{ | |
} | |
} | |
//注入 | |
builder.Services.AddTransient<ICustomService, CustomService>(); | |
builder.Services.AddTransient<ICustomServiceV2, CustomServiceV2>(); | |
//使用 | |
private readonly ICustomService _customService; | |
private readonly ICustomServiceV2 _customServiceV2; | |
public CustomController(ICustomService customService,ICustomServiceV2 customServiceV2) | |
{ | |
_customService = customService; | |
_customServiceV2 = customServiceV2; | |
} |
这种实现方式需要增加了一套空接口做隔离,看似可能比较“浪费”,但后期随着项目的演进,ICustomService
和ICustomServiceV2
可能会慢慢分化,我们可以很方便的为它们扩充各种独有方法。
使用单接口实现
如果我们确定不需要多个接口,也可以使用下面的单接口实现
public interface ICustomService | |
{ | |
void MethodA(); | |
void MethodB(); | |
} | |
//第一种实现 | |
public class CustomService: ICustomService | |
{ | |
public void MethodA() | |
{ | |
} | |
public void MethodB() | |
{ | |
} | |
} | |
//第二种实现 | |
public class CustomServiceV2: ICustomService | |
{ | |
public void MethodA() | |
{ | |
} | |
public void MethodB() | |
{ | |
} | |
} | |
//注入 | |
builder.Services.AddTransient<ICustomService, CustomService>(); | |
builder.Services.AddTransient<ICustomService, CustomServiceV2>(); | |
//使用 | |
private readonly ICustomService _customService; | |
private readonly ICustomService _customServiceV2; | |
public CustomController(IEnumerable<ICustomService> customServices) | |
{ | |
_customService = customServices.ElementAt(0); | |
_customServiceV2 = customServices.ElementAt(1); | |
} |
从上面代码可以看到,我们是为从接口ICustomService
注册两个实现,并从IEnumerable<ICustomService>
解析出了这两个实现。这里可能会有两个疑问
- 为什么第一个实现
CustomService
没有被第二个实现CustomServiceV2
替换掉? - 为什么可以从
IEnumerable<ICustomService>
解析到我们需要的服务?
答案在Microsoft.Extensions.DependencyInjection.ServiceDescriptor 和 Microsoft.Extensions.DependencyInjection.ServiceCollection 这两个类里,进程里,依赖注入的服务,会被添加到ServiceCollection
里,ServiceCollection
是一组ServiceDescriptor
的集合,ServiceDescriptor
通过服务类型、实现以及生命周期三个组合在一起构成的标识来确定服务。而ICustomService+CustomService+Transient
和ICustomService+CustomServiceV2+Transient
是两个不同的ServiceDescriptor
,因此不会被替换。同时服务类型的ServiceDescriptor
会被聚合在一起,于是我们可以很方便的从IEnumerable对象中解析出所有的同类型的服务。
总结
本质上,两种方法都是多态性(Polymorphism)的应用,没有优劣之分,根据场景选择合适的写法。
链接
https://learn.microsoft.com/en-us/dotnet/core/extensions/dependency-injection
https://github.com/dotnet/runtime
出处:https://www.cnblogs.com/netry/p/net-dependency-injection-multiple-implementations.html
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/17158752.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!