MVC4 Custom HandleErrorAttribute,未调用global.asax中的方法

时间:2013-07-03 14:42:24

标签: asp.net-mvc asp.net-mvc-4

我无法在我的MVC4应用程序中使用Custom HandleErrorAttribute。

记录异常的自定义类

  public class HandleAndLogErrorAttribute : HandleErrorAttribute
  {
    private static readonly Logger Logger = LogManager.GetCurrentClassLogger();

    public override void OnException(ExceptionContext filterContext)
    {
      var message = string.Format("Exception     : {0}\n" +
                                  "InnerException: {1}", 
                                  filterContext.Exception,
                                  filterContext.Exception.InnerException);
      Logger.Error(message);
      base.OnException(filterContext);
    }
  }

在Global.asax中我添加了一个新的静态方法:

  public class MvcApplication : System.Web.HttpApplication
  {
    protected void Application_Start()
    {
      AreaRegistration.RegisterAllAreas();

      WebApiConfig.Register(GlobalConfiguration.Configuration);
      FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
      RouteConfig.RegisterRoutes(RouteTable.Routes);
    }

    public static void RegisterGlobalFilters(GlobalFilterCollection filters)
    {
      filters.Add(new HandleAndLogErrorAttribute()); //Todo: log all errors
      throw new Exception("not called???");
    }

  }

当抛出异常时,会加载error.chstml,但永远不会调用自定义HandlErrorAttribute中的OnException覆盖。

我怀疑Global.asax中的RegisterGlobalFilters方法没有被调用,并且在那里抛出异常(参见代码)证实了这一点。永远不会抛出这个例外。

在web.config文件中,我将customErrors设置为:

<customErrors mode="On">
</customErrors>

我在另一个解决方案中使用了相同的方法,我无法理解为什么这个HandleErrorAttribute扩展无效。

1 个答案:

答案 0 :(得分:10)

您在RegisterGlobalFilters内创建了Global.asax方法,但自MVC 4以来,全局过滤器注册在App_Start/FilterConfig.cs中的单独文件中指定。

FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)中的行Global.asax正在调用指定文件中定义的注册。

在指定文件中添加自定义过滤器注册,或在RegisterGlobalFilters中手动调用(本地)Application_Start