欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET Core  依赖注入框架的使用

程序员文章站 2022-03-07 12:23:00
目录一、ioc框架二、ioc-autofac三、.net core中自带di的使用四、autofac 使用前言:还记得上篇文章中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使用的部分。

ASP.NET Core  依赖注入框架的使用

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.访问测试。

ASP.NET Core  依赖注入框架的使用

这里使用的接口测试软件是postman,api测试很方便,网上可以搜索到,找不到我到的可以联系我。

四、autofac 使用

1.在新建一个asp.net core web api项目(选用的.net 5.0)用于区分前面的core自带的di。

ASP.NET Core  依赖注入框架的使用

2.引用引用 autofac 的包,看看这下载量,还是很哇塞的

ASP.NET Core  依赖注入框架的使用

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测试接口。

ASP.NET Core  依赖注入框架的使用

好了关于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  依赖注入框架的使用的文章就介绍到这了,更多相关 asp.net core  依赖注入框架内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!