1.Autofac基础使用
参考: https://www.cnblogs.com/li150dan/p/10071079.html
2.ASP.NETCore 3.0 Autofac 容器替换
需要引用:Autofac, Autofac.Extensions.DependencyInjection
在Program.cs 使用AutofacServiceProviderFactory进行容器替换。
public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup<Startup>(); }).UseServiceProviderFactory(new AutofacServiceProviderFactory());
3.ASP.NETCore 3.0 Autofac 控制器属性注入
在Startup 服务配置中加入控制器替换规则。
public void ConfigureServices(IServiceCollection services) { services.Replace(ServiceDescriptor .Transient<IControllerActivator, ServiceBasedControllerActivator>()); services.AddControllers(); }
建立一个Module,实现属性注入,及自定义接口注册。
public class DefaultModule : Autofac.Module { protected override void Load(ContainerBuilder containerBuilder) { //获取所有控制器类型并使用属性注入 var controllerBaseType = typeof(ControllerBase); containerBuilder.RegisterAssemblyTypes(typeof(Program).Assembly) .Where(t => controllerBaseType.IsAssignableFrom(t) && t != controllerBaseType) .PropertiesAutowired(); //containerBuilder.RegisterType<XiaoMi>().As<IPhone>().PropertiesAutowired(); } }
在Startup中注册Module即可使用控制器属性注入。
public void ConfigureContainer(ContainerBuilder builder) { builder.RegisterModule<DefaultModule>(); }
4.ASP.NETCore 3.0 Autofac 全局容器获取
有时在系统初始化完成,接口和相应类注册完毕后想读取某个接口进行自定义初始化构建。比如初始化自定义工厂,加载外部DLL,在不知外部类情况下进行初始化构建自己的服务。
代码比较简单,但是不知道的话比较伤脑筋。代码如下:
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IHost host) { using (var container = host.Services.CreateScope()) { IPhone phone= container.ServiceProvider.GetService<IPhone>(); } app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); }