.net 6 中使用Autofac
阿新 • • 發佈:2022-01-02
最近新建了一個.net 6的core專案,長時間沒有更新技術棧的我在剛使用的時候著實吃了一驚,Program.cs寫法大變樣了,具體的去看官方文件。這裡說下在.net 6環境下的.net core專案裡如何使用Autofac實現依賴注入。
通常的,我們把其他服務注入到Controller時,使用.net core自帶的依賴注入即可,但是如果我們要實現自定義服務註冊時,就要用到第三方IOC元件了。這裡推薦Autofac。(別的我不知道也沒用過,hh)。
第一步,在Nuget引入Autofac、Autofac.Extensions.DependencyInjection這兩個dll。
第二步,定義Module,方便對注入服務進行管理:
using Autofac; using System.Reflection; namespace Infrastructure { public class AutofacModuleRegister : Autofac.Module { //重寫Autofac管道Load方法,在這裡註冊注入 protected override void Load(ContainerBuilder builder) { //程式集註入業務服務 var IAppServices = Assembly.Load("View CodeApplication"); var AppServices = Assembly.Load("Application"); //根據名稱約定(服務層的介面和實現均以Service結尾),實現服務介面和服務實現的依賴 builder.RegisterAssemblyTypes(IAppServices, AppServices) .Where(t => t.Name.EndsWith("Service")) .AsImplementedInterfaces(); } } }
第三步,在Program.cs中註冊:
//Autofac注入 builder.Host .UseServiceProviderFactory(new AutofacServiceProviderFactory()) .ConfigureContainer<ContainerBuilder>(builder => { builder.RegisterModule(new AutofacModuleRegister()); });View Code
第四步,在建構函式中注入:
using Application; using Microsoft.AspNetCore.Mvc; namespace Web.Controllers { [Route("api/[controller]")] [ApiController] public class HomeController : ControllerBase { ITestService _testService; public HomeController(ITestService testService) { _testService = testService; } [HttpGet("{id}")] public string Get(int id) { return "value" + _testService.Get(); } } }View Code
和.net core自帶的注入方式用法一樣,這裡直接注入Controller了,往其他層注入也是一樣的寫法。
參考資料:
1.Dotnet:https://docs.microsoft.com/zh-cn/dotnet/fundamentals/
2.Autofac:https://autofac.org/
PS:樓主郵箱 [email protected]