? 众所周知core自带的IOC容器,并不支持属性注入,如果要使用属性注入的话,就需要使用第三方解决方案.比如鼎鼎有名的autofact,还有国人出品的AspectCore-Framework.根据他blog上的介绍,性能大概是前者的5倍.参考
添加包
AspectCore.Extensions.Hosting
在需要注入的属性上加上特性
[FromServiceContext]
public PerformingContext JobContext { get; set; }
IserviceCollection引入我们的组建
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.UseServiceContext() //注入Aspect
.ConfigureAppConfiguration((context, builder) =>
{
builder.AddNacosConfiguration(builder.Build().GetSection("nacos"));
})
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
Startup中注入PerformingContext
services.AddTransient<PerformingContext>(PerformingContext);
即可完成.
原文:https://www.cnblogs.com/xinzhyu/p/15233188.html