gpt4 book ai didi

c# - 如何在 ASP.NET 5 中动态创建和注入(inject)服务?

转载 作者:太空宇宙 更新时间:2023-11-03 12:56:12 24 4
gpt4 key购买 nike

我所处的情况是,vnext 的 DI 容器的经典功能不足以为我提供正确的功能。假设我有一个从数据库中获取数据的数据服务,如下所示:

public class DataService : IDataService, IDisposable {
public List<MyObject> GetMyObjects()
{
// do something to fetch the data...
return myObjects;
}
}

然后我可以在 Startup.cs 的配置阶段在 DI 容器中注册此服务:

public void ConfigureServices(IServiceCollection services) 
{
services.AddScoped(typeof(IDataService), typeof(DataService));
}

这确保了服务的正确生命周期(每个请求范围一个),但是,当发出不同的请求时,我需要该服务访问不同的数据库。为简单起见,假设适用以下场景:

  • 当向我的 Web API 发出请求时,DataService 将访问当前登录的用户,其中包含一个名为 Database 的声明,其中包含要访问哪个数据库的信息使用。
  • 然后使用正确的数据库连接实例化 DataService

为了让第二步工作,我为 DataService 创建了一个构造函数,如下所示:

public DataService(IHttpContextAccessor accessor) 
{
// get the information from HttpContext
var currentUser = accessor.HttpContext.User;
var databaseClaim = currentUser.Claims.SingleOrDefault(c => c.Type.Equals("Database"));

if (databaseClaim != null)
{
var databaseId = databaseClaim.Value;
// and use this information to create the correct database connection
this.database = new Database(databaseId);
}
}

通过使用当前登录的用户及其声明,我可以确保我自己的身份验证中间件负责提供必要的信息,以防止攻击者尝试访问错误的数据库。

当然,需要添加 IDisposable 实现来清理任何数据库连接(并使用作用域生命周期正确调用)。

然后我可以像这样将 DataService 注入(inject)到 Controller 中

public MyController : Controller 
{
private IDataService dataService;
public MyController(IDataService dataService)
{
this.dataService = dataService;
}
}

目前一切正常。我现在的问题是:

  1. 除了使用 DataService 的构造函数之外,还有其他方法来创建实例吗?也许访问 IServiceCollection 提供的对象是在一个不同的地方,而不是在只运行一次的配置阶段?也许使用我自己的 OWIN 中间件?
  2. 这种方法真的安全吗?同时发出的两个请求是否会意外以用于另一个请求的 DataService 结束,从而最终给出错误的数据?

最佳答案

你有的很好。

Is there another way to create the instance other than using the constructor of the DataService? Maybe accessing the object the IServiceCollection provides in a different place other than during the configration phase which runs only once? Maybe using my own OWIN middleware?

不是真的。您可以使用委托(delegate)注册,但这是同样的问题。

Is this method really safe?

Could two requests made at the same time accidentally end up with the DataServiceintended for the other request and therefore end up giving out the wrong data?

没有。 IHttpContextAcessor 使用 AsyncLocal ( http://blog.stephencleary.com/2013/04/implicit-async-context-asynclocal.html ) 提供对“当前”http 上下文的访问。

关于c# - 如何在 ASP.NET 5 中动态创建和注入(inject)服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33760578/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com