ASP.NET Core 依赖注入框架的使用
前言:
还记得上篇文章中asp.net core 依赖注入详细最后提及到,假如服务越来越多怎么处理呢,本篇文章将会带来解决办法。这篇是接上一篇文章的,概念方面的可以参考上一篇文章。
一、ioc框架
先说说常见的ioc框架吧。autofac:
目前net
用的比较多,好多大佬的项目比较优先选择的框架。ninject:
已经很少用了,还时在很早的文章中见过。unity:
比较常见的了,好多地方有用到的,core: core
中自带的,业务逻辑不太复杂的情况下,还是比较方便的。
二、ioc-autofac
autofac
是.net
领域最为流行的ioc
框架之一,传说是速度最快的一个。
优点:
- 它是c#语言联系很紧密,也就是说c#里的很多编程方式都可以为
autofac
使用。 - 较低的学习曲线,学习它非常的简单,只要你理解了
ioc
和di的概念以及在何时需要使用它们。 -
xml.json
配置支持。 - 自动装配。
- 与
asp.net mvc
集成。 - 微软的
orchad
开源程序使用的就是autofac
,从该源码可以看出它的方便和强大。
大多数讲autofac
框架的文章中都会提及上面几点优点,可见其框架的优秀。
三、.net core中自带di的使用
1.首先创建一个 asp.net core web api
项目(选用的.net 5.0),整体如下,红色部分为core中自带di使用的部分。
2.新建类库项目,分别添加一个接口文件和类文件。
接口:
public interface isayhelloservice { string sayhello(string name); }
类:
public class englishsayhelloservice : isayhelloservice { public string sayhello(string name) { return $"hello,{name}!"; } }
3.在 startup
里面的 configureservices
方法内注入。
services.addscoped<isayhelloservice, englishsayhelloservice>();
4.然后在控制器中使用刚刚注入的服务。
[route("api/[controller]/[action]")] [apicontroller] public class hellocontroller : controllerbase { public readonly isayhelloservice sayhelloservice; public hellocontroller(isayhelloservice sayhelloservice) { this.sayhelloservice = sayhelloservice; } [httpget] public string coredi() { return sayhelloservice.sayhello("coredi"); } }
注意: 路由访问地址,出现404错误时,可能是路由问题,路由可根据自己的实际需要自己在[route("api/[controller]/[action]")]处修改。
5.访问测试。
这里使用的接口测试软件是postman
,api测试很方便,网上可以搜索到,找不到我到的可以联系我。
四、autofac 使用
1.在新建一个asp.net core web api
项目(选用的.net 5.0)用于区分前面的core自带的di。
2.引用引用 autofac
的包,看看这下载量,还是很哇塞的
3.在 program
中改用 autofac
来实现依赖注入
public class program { public static void main(string[] args) { createhostbuilder(args).build().run(); } public static ihostbuilder createhostbuilder(string[] args) => host.createdefaultbuilder(args) .configurewebhostdefaults(webbuilder => { webbuilder.usestartup<startup>(); }); }
4.在 startup 类中添加方法:configurecontainer
,注入我们之前的服务。
public class startup { public startup(iconfiguration configuration) { configuration = configuration; } public iconfiguration configuration { get; } public void configureservices(iservicecollection services) { services.addcontrollers(); } //在这里注入 public void configurecontainer(containerbuilder builder) { builder.registertype<englishsayhelloservice>().as<isayhelloservice>(); } public void configure(iapplicationbuilder app, iwebhostenvironment env) { if (env.isdevelopment()) { app.usedeveloperexceptionpage(); } app.userouting(); app.useauthorization(); app.useendpoints(endpoints => { endpoints.mapcontrollers(); }); } }
5.控制器这里基本不需要更改。
[route("api/[controller]/[action]")] [apicontroller] public class hellocontroller : controllerbase { public readonly isayhelloservice sayhelloservice; public hellocontroller(isayhelloservice sayhelloservice) { this.sayhelloservice = sayhelloservice; } [httpget] public string coredi() { return sayhelloservice.sayhello("autofacdi"); } }
6.运行项目继续用postman测试接口。
好了关于autofac
的基本使用基本就讲完了,是不是还是挺简单的。
五、批量注入
简单的几个服务写着还可以接受,当服务到几十个,甚至上百个时,想想就可怕。这就不得不说到批量注入了,autofac的优势就体现出来了。
1.在服务中分别在添加一个接口,和类。
接口:
public interface iuseautofacservice { string useautofac(string name); }
类:
public class useautofacservice : iuseautofacservice { public string useautofac(string name) { return $"{name}批量注入测试!"; } }
2.回到我们之前的startup 类中修改方法:configurecontainer
。
public void configurecontainer(containerbuilder builder) { //builder.registertype<englishsayhelloservice>().as<isayhelloservice>(); //服务项目程序集 assembly service = assembly.load("autofac.service"); //服务接口项目程序集 assembly iservice = assembly.load("autofac.service"); builder.registerassemblytypes(service, iservice).where(n => n.fullname.endswith("service") && !n.isabstract) .instanceperlifetimescope().asimplementedinterfaces(); }
注意: 如果需要注入的服务没有 ixxxservice
的接口 ,那么 builder.registerassemblytypes
就只需要传一个程序集。如果服务与接口同在一个项目,那也是要传两个程序集的。
3.接下来在刚刚的控制器中略作修改。
[route("api/[controller]/[action]")] [apicontroller] public class hellocontroller : controllerbase { public readonly isayhelloservice sayhelloservice; public readonly iuseautofacservice useautofacservice; public hellocontroller(isayhelloservice _sayhelloservice, iuseautofacservice _useautofacservice) { this.sayhelloservice = _sayhelloservice; this.useautofacservice = _useautofacservice; } [httpget] public string autofacdi() { return sayhelloservice.sayhello("autofacdi"); } public string bathautofacdi() { var name = sayhelloservice.sayhello("autofacdi"); return useautofacservice.useautofac(name); } }
4.用postman
测试注入的情况。
到此这篇关于 asp.net core 依赖注入框架的使用的文章就介绍到这了,更多相关 asp.net core 依赖注入框架内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 鸡爪要煮多久才可以去腌制?
下一篇: Emoji新表情公布:男妈妈惹眼
推荐阅读
-
ASP.net core 2.0.0 中 asp.net identity 2.0.0 的基本使用(二)—启用用户管理
-
如何用js 实现依赖注入的思想,后端框架思想搬到前端来_javascript技巧
-
ABP框架的基础配置及依赖注入讲解
-
ASP.NET框架中的数据绑定概要与数据绑定表达式的使用
-
ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统之前端页面框架构建源码分享
-
浅析依赖注入框架Autofac的使用
-
或许是你应该了解的一些 ASP.NET Core Web API 使用小技巧
-
ABP框架的基础配置及依赖注入讲解
-
ASP.NET Core静态文件的使用方法
-
ASP.NET框架中的数据绑定概要与数据绑定表达式的使用