赞
踩
1.Autofac基础使用
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();
}).UseServiceProviderFactory(new AutofacServiceProviderFactory());
3.ASP.NETCore 3.0 Autofac 控制器属性注入
在Startup 服务配置中加入控制器替换规则。
public voidConfigureServices(IServiceCollection services)
{
services.Replace(ServiceDescriptor
.Transient());
services.AddControllers();
}
建立一个Module,实现属性注入,及自定义接口注册。
public classDefaultModule : Autofac.Module
{protected override voidLoad(ContainerBuilder containerBuilder)
{//获取所有控制器类型并使用属性注入
var controllerBaseType = typeof(ControllerBase);
containerBuilder.RegisterAssemblyTypes(typeof(Program).Assembly)
.Where(t=> controllerBaseType.IsAssignableFrom(t) && t !=controllerBaseType)
.PropertiesAutowired();
//containerBuilder.RegisterType().As().PropertiesAutowired();
}
}
在Startup中注册Module即可使用控制器属性注入。
public voidConfigureContainer(ContainerBuilder builder)
{
builder.RegisterModule();
}
4.ASP.NETCore 3.0 Autofac 全局容器获取
有时在系统初始化完成,接口和相应类注册完毕后想读取某个接口进行自定义初始化构建。比如初始化自定义工厂,加载外部DLL,在不知外部类情况下进行初始化构建自己的服务。
代码比较简单,但是不知道的话比较伤脑筋。代码如下:
public voidConfigure(IApplicationBuilder app, IWebHostEnvironment env, IHost host)
{using (var container = host.Services.CreateScope())
{
IPhone phone= container.ServiceProvider.GetService();
}
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints=>{
endpoints.MapControllers();
});
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。