将 KeyFilter 与 ASP.NET Core 2.0 结合使用

2024-01-25

我在简单的 ASP.NET Core 2.0 WebAPI 应用程序中使用 KeyFilter 属性时遇到问题。

<PackageReference Include="Autofac" Version="4.6.1" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.2.0" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />

程序.cs:

public class Program
{
    public static void Main(string[] args)
    {
        BuildWebHost(args).Run();
    }

    public static IWebHost BuildWebHost(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
               .ConfigureServices(services => services.AddAutofac())
               .UseStartup<Startup>()
               .Build();
    }

启动.cs:

public Startup(IConfiguration configuration)
{
    Configuration = configuration;
}

public IConfiguration Configuration { get; }

public IContainer ApplicationContainer { get; private set; }

// This method gets called by the runtime. 
// Use this method to add services to the container.
public IServiceProvider ConfigureServices(IServiceCollection services)
{
    services.AddMvc();

    // Autofac
    var builder = new ContainerBuilder();

    builder.Populate(services);
    builder.RegisterType<ClassX1>()
           .Keyed<IInterfaceX>("first")
           .WithParameter("name", "X1")
           .SingleInstance();

    builder.RegisterType<ClassX1>()
           .Keyed<IInterfaceX>("second")
           .WithParameter("name", "X2")
           .SingleInstance();

    builder.RegisterType<ClassX1>()
           .As<IInterfaceX>()
           .WithParameter("name", "X3")
           .SingleInstance();

    builder.RegisterType<ValuesController>()
           .WithAttributeFiltering();

    ApplicationContainer = builder.Build();

    return ApplicationContainer.Resolve<IServiceProvider>();
    // return new AutofacServiceProvider(this.ApplicationContainer);
}

// This method gets called by the runtime. 
// Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
    }

    app.UseMvc();
}

ClassX1.cs:

public class ClassX1: IInterfaceX
{
    public ClassX1(string name)
    {
        Name = name;
    }

    public string Name { get; }
}

IInterfaceX.cs:

public interface IInterfaceX
{
    string Name { get; }
}

ValuesController.cs:

[Route("api/[controller]")]
public class ValuesController : Controller
{
    private readonly IInterfaceX _x;

    public ValuesController([KeyFilter("second")] IInterfaceX x)
    {
        _x = x;
    }

    // GET api/values
    [HttpGet]
    public IEnumerable<string> Get()
    {
        return new string[] { "value1", "value2", _x.Name };
    }
}

调用“/api/values”会产生[“value1”,“value2”,“X3”]。 但我期望[“value1”,“value2”,“X2”]。

如果我删除第三个注册(使用 X3)然后

InvalidOperationException:尝试激活“WebApplicationAutofac.Controllers.ValuesController”时无法解析类型“WebApplicationAutofac.IInterfaceX”的服务。

尝试直接解决正确的问题:

var temp = ApplicationContainer.ResolveKeyed<IInterfaceX>("second");

怎么了?


是的,它对于 WebAPI 控制器来说非常酷。

解决方案是添加.AddControllersAsServices():

public IServiceProvider ConfigureServices(IServiceCollection services)
{
    services.AddMvc().AddControllersAsServices();
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

将 KeyFilter 与 ASP.NET Core 2.0 结合使用 的相关文章

随机推荐