ASP.NET Core实现自动依赖注入
网络编程 2021-07-04 22:41www.168986.cn编程入门
这篇文章主要介绍了ASP.NET Core实现自动依赖注入的示例,帮助大家更好的理解和学习使用.技术,感兴趣的朋友可以了解下
在开发.NET Core web服务的时候,我们习惯使用自带的依赖注入容器来进行注入。
于是就会经常进行一个很频繁的的重复动作定义一个接口->写实现类->注入
有时候会忘了写Add这一步,看到屏幕上的报错一脸懵逼,然后瞬间反应过来忘了注入了。赶紧补上serviceCollection.AddXXX这句话
虽然说有很多开源框架已经实现了类似的工作,比如AutoFac,Unity等依赖注入框架。这些库都太庞大了,我个人还是喜欢轻量级的实现。
定义一个枚举
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] public class AutoInjectAttribute : Attribute { public AutoInjectAttribute(Type interfaceType, InjectType injectType) { Type = interfaceType; InjectType = injectType; } public Type Type { get; set; } /// <summary> /// 注入类型 /// </summary> public InjectType InjectType { get; set; } }
定义三种注入类型
/// <summary> /// 注入类型 /// </summary> public enum InjectType { Scope, Single, Transient }
扫描运行目录下所有的dll,进行自动注入
/// <summary> /// 自动依赖注入 /// </summary> public static class AutoInject { /// <summary> /// 自动注入所有的程序集有InjectAttribute标签 /// </summary> /// <param name="serviceCollection"></param> /// <returns></returns> public static IServiceCollection AddAutoDi(this IServiceCollection serviceCollection) { var path = AppDomain.CurrentDomain.BaseDirectory; var assemblies = Directory.GetFiles(path, ".dll").Select(Assembly.LoadFrom).ToList(); foreach (var assembly in assemblies) { var types = assembly.GetTypes().Where(a => a.GetCustomAttribute<AutoInjectAttribute>() != null) .ToList(); if (types.Count <= 0) continue; foreach (var type in types) { var attr = type.GetCustomAttribute<AutoInjectAttribute>(); if (attr?.Type == null) continue; switch (attr.InjectType) { case InjectType.Scope: serviceCollection.AddScoped(attr.Type, type); break; case InjectType.Single: serviceCollection.AddSingleton(attr.Type, type); break; case InjectType.Transient: serviceCollection.AddTransient(attr.Type, type); break; default: throw new ArgumentOutOfRangeException(); } } } return serviceCollection; } }
使用自动依赖注入功能
public void ConfigureServices(IServiceCollection services) { services.AddAutoDi(); }
public interface ITest { string Say(); } [AutoInject(typeof(ITest),InjectType.Scope)] public class Test : ITest { public String Say() { return "test:"+DateTime.Now.ToString(); } }
运行程序,所有的贴有AutoInject
的所有的实现类,都会被注入到asp. core的依赖注入容器中。
以上就是ASP.NET Core实现自动依赖注入的详细内容,更多关于ASP.NET Core 自动依赖注入的资料请关注狼蚁SEO其它相关文章!
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程