加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net-web-api – 在WebApi2项目中使用CacheOutput属性时,依赖

发布时间:2020-12-16 03:29:28 所属栏目:asp.Net 来源:网络整理
导读:在我的ASP.NET WebApi2项目中,我决定使用 Strathweb.CacheOutput.WebApi2 package来提供缓存和电子标签功能.但是,在放入CacheOutput属性后,我开始收到错误: Microsoft.Practices.Unity.ResolutionFailedException: Resolution of the dependency failed,typ
在我的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使用以下逻辑来查找缓存提供程序(使用第一个匹配项):

>检查Func< IApiOutputCache>在您的HttpConfiguration的属性中
>签入已注册的IDependencyResolver
>使用新的MemoryCacheDefault()

通常,IDependencyResolver在找不到注册时将返回null – 在这种情况下,您的Unity实现似乎正在抛出Ex.

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读