asp.net-mvc – 命中错误:在解析器和自定义注册提供程序中找到了IControllerFactory的实例

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 命中错误:在解析器和自定义注册提供程序中找到了IControllerFactory的实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们在某些环境中遇到以下错误,似乎是在应用程序池回收之后.

An instance of IControllerFactory was found in the
resolver as well as a custom registered provider in
ControllerBuilder.GetControllerFactory. Please set only one or the other.

我们没有使用ControllerBuilder注册我们的控制器工厂,只有this blog中指出的IDependencyResolver

我们使用Castle Windsor(看似无关)作为我们的容器,在Global.asax的Application_Start中,首先注册所有依赖项并调用以下内容注册IDepencencyResolver.

DependencyResolver.SetResolver(new WindsorDependencyResolver(IoC));

可能导致此异常的原因是什么?任何帮助,将不胜感激.

解决方法

不推荐在Castle Windsor中使用MVC DependencyResolver,因为它有一个设计缺陷:它不会在应该发布服务实例时释放它.有关完整说明,请参阅此 article.

相反,使用Windsor documentation中说明的方法,该方法使用自定义工厂将依赖项注入控制器.

原文链接:https://www.f2er.com/aspnet/247205.html

猜你在找的asp.Net相关文章