gpt4 book ai didi

asp.net-web-api - 在 WebApi2 项目中使用 CacheOutput 属性时解决依赖关系失败

转载 作者:行者123 更新时间:2023-12-02 04:25:18 27 4
gpt4 key购买 nike

在我的 ASP.NET WebApi2 项目中,我决定使用 Strathweb.CacheOutput.WebApi2 package提供缓存和电子标签功能。但是,在放置 CacheOutput 属性后,我开始收到错误:

Microsoft.Practices.Unity.ResolutionFailedException: Resolution of the dependency failed, type = "WebApi.OutputCache.Core.Cache.IApiOutputCache", name = "(none)".
Exception occurred while: while resolving.
Exception is: InvalidOperationException - The current type, WebApi.OutputCache.Core.Cache.IApiOutputCache, is an interface and cannot be constructed. Are you missing a type mapping?

显然,包的内部 DI 容器无法解析缓存提供程序。

我使用属性的方式:

[HttpGet, Route("")]
[CacheOutput(ClientTimeSpan = 60 * 60 * 4, ServerTimeSpan = 60 * 60 * 4)]
public HttpResponseMessage Get(
string products,
int? startYear = null,
int? endYear = null,
int? drillDownYear = null,
int? drilldownMonth = null,
string callback = "")
{
...
}

请注意,我还在我的应用程序中使用 Unity 作为 DI 容器。

最佳答案

lib 使用以下逻辑来查找缓存提供程序(使用第一个匹配项):

  1. 检查 Func<IApiOutputCache>Properties您的HttpConfiguration
  2. 查看已注册的IDependencyResolver
  3. 使用new MemoryCacheDefault()

通常IDependencyResolver当未找到注册时将返回 null - 在这种情况下,您的 Unity 实现似乎会抛出 Ex。

您可以通过切换到更好的 DI 来缓解这种情况:) 或者只注册 new MemoryCacheDefault() 的单例如IApiOutputCache在您的 Unity 容器中。

关于asp.net-web-api - 在 WebApi2 项目中使用 CacheOutput 属性时解决依赖关系失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23802478/

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