将Autofac.Mvc5从3.3.2更新到3.3.3后出错

时间:2014-11-20 20:56:22

标签: c# asp.net-mvc dependency-injection autofac custom-membershipprovider

将Autofac.Mvc5从3.3.2更新到3.3.3后出现错误 我将我的问题发布到github https://github.com/autofac/Autofac/issues/572#issuecomment-63236738并得到了我需要在这里提出的回复:)

在我的情况下:

我有什么:

// Setup DI as default MVC controller factory
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));

我需要在自定义成员资格提供程序的注入属性中使用它

protected IMembershipService MembershipService
{
    get
    {
         return DependencyResolver.Current.GetService();
    }
}

问题:依赖项解析程序的类型不是“Autofac.Integration.Mvc.AutofacDependencyResolver”

请帮我解决这个问题。

更新 所以现在从3.3.2到更新后我有这样的错误

依赖项解析程序的类型不是“Autofac.Integration.Mvc.AutofacDependencyResolver”,并且似乎没有使用Castle Project中的DynamicProxy进行包装。此问题可能是DynamicProxy实现发生更改或使用其他代理库来包装依赖项解析程序的结果。

关于如何解决这个问题的任何想法?

网址图片错误http://i.stack.imgur.com/yJJXX.png

更新 这是我发现的 github.com/autofac/Autofac/blob/82cc138596e74095f50720319feb2a2ce734310d/Core/Source/Autofac.Integration.Mvc/AutofacDependencyResolver.cs 在这个文件中,我们有一部分用于此类文本的异常抛出。 这只是所有源代码中的一部分,因此我认为我需要继续前进并找出我遇到此问题的原因。此外,为什么我的代码请求此方法AutofacDependencyResolver.Current。 当我检查我没有直接调用AutofacDependencyResolver.Current。 我需要调查其他变种(地方)的电话。

3 个答案:

答案 0 :(得分:0)

现在我看到了这样的决议

        // Create DI container
        var builder = new ContainerBuilder();

        // Register application modules
        Autofac_RegisterApplicationModules(builder);

        // Register filter provider
        //builder.RegisterFilterProvider();

        // Register MVC specific abstractions (HttpRequestBase,HttpResponceBase etc)
        builder.RegisterModule(new AutofacWebTypesModule());

        // container
        var container = builder.Build();

如你所见,我评论了这一行

//builder.RegisterFilterProvider();

但如果可以,我需要确认!

请,谁知道解释它是否正确和/或如何成为。

以下跟踪结果 - 需要帮助

[InvalidOperationException: The dependency resolver is not of type 'Autofac.Integration.Mvc.AutofacDependencyResolver' and does not appear to be wrapped using DynamicProxy from the Castle Project. This issue could be the result of a change in the DynamicProxy implementation or the use of a different proxy library to wrap the dependency resolver.]
   Autofac.Integration.Mvc.AutofacDependencyResolver.get_Current() +367
   Autofac.Integration.Mvc.AutofacFilterProvider.GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor) +196
   System.Web.Mvc.FilterProviderCollection.GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor) +279
   System.Web.Mvc.ControllerActionInvoker.GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor) +62
   System.Web.Mvc.Async.AsyncControllerActionInvoker.BeginInvokeAction(ControllerContext controllerContext, String actionName, AsyncCallback callback, Object state) +436
   System.Web.Mvc.Controller.<BeginExecuteCore>b__1c(AsyncCallback asyncCallback, Object asyncState, ExecuteCoreState innerState) +82
   System.Web.Mvc.Async.WrappedAsyncVoid`1.CallBeginDelegate(AsyncCallback callback, Object callbackState) +73
   System.Web.Mvc.Async.WrappedAsyncResultBase`1.Begin(AsyncCallback callback, Object state, Int32 timeout) +151
   System.Web.Mvc.Async.AsyncResultWrapper.Begin(AsyncCallback callback, Object callbackState, BeginInvokeDelegate`1 beginDelegate, EndInvokeVoidDelegate`1 endDelegate, TState invokeState, Object tag, Int32 timeout, SynchronizationContext callbackSyncContext) +105
   System.Web.Mvc.Controller.BeginExecuteCore(AsyncCallback callback, Object state) +588
   System.Web.Mvc.Controller.<BeginExecute>b__14(AsyncCallback asyncCallback, Object callbackState, Controller controller) +47
   System.Web.Mvc.Async.WrappedAsyncVoid`1.CallBeginDelegate(AsyncCallback callback, Object callbackState) +65
   System.Web.Mvc.Async.WrappedAsyncResultBase`1.Begin(AsyncCallback callback, Object state, Int32 timeout) +151
   System.Web.Mvc.Async.AsyncResultWrapper.Begin(AsyncCallback callback, Object callbackState, BeginInvokeDelegate`1 beginDelegate, EndInvokeVoidDelegate`1 endDelegate, TState invokeState, Object tag, Int32 timeout, SynchronizationContext callbackSyncContext) +139
   System.Web.Mvc.Controller.BeginExecute(RequestContext requestContext, AsyncCallback callback, Object state) +484
   System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.BeginExecute(RequestContext requestContext, AsyncCallback callback, Object state) +50
   System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__4(AsyncCallback asyncCallback, Object asyncState, ProcessRequestState innerState) +98
   System.Web.Mvc.Async.WrappedAsyncVoid`1.CallBeginDelegate(AsyncCallback callback, Object callbackState) +73
   System.Web.Mvc.Async.WrappedAsyncResultBase`1.Begin(AsyncCallback callback, Object state, Int32 timeout) +151
   System.Web.Mvc.Async.AsyncResultWrapper.Begin(AsyncCallback callback, Object callbackState, BeginInvokeDelegate`1 beginDelegate, EndInvokeVoidDelegate`1 endDelegate, TState invokeState, Object tag, Int32 timeout, SynchronizationContext callbackSyncContext) +106
   System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) +446
   System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContext httpContext, AsyncCallback callback, Object state) +88
   System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) +50
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +301
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155

在我的新调查后,我发现了这个问题。 我的网站使用MVCSiteMap

http://i.stack.imgur.com/7xnul.png

我现在正在检查如何配置MvcSiteMapProvider以不更改DI。

<add key="MvcSiteMapProvider_UseExternalDIContainer" value="false" />

所以我认为我需要将其更改为true才能解决问题。 我现在正在进行中,很快就会告诉你。

如果您有解决方案,请随时更新我的​​观点!

答案 1 :(得分:0)

我遇到了同样的问题。

这是由于MvcSiteMapProvider使用它自己的DI。

您可以通过使用NuGet包MvcSiteMapProvider MVC5 Autofac Dependency Injection Configuration并设置Autofac来解决此问题,如此项目的自述文件中所述。

答案 2 :(得分:-1)

我没有为我这条线工作:

 Autofac_RegisterApplicationModules(builder);

所以我改变了这个:

  RegisterAssemblyModules(builder);

现在有效。

感谢您的解决方案!