ASP.NET MVC中异常处理&自定义错误页详析
一、应用场景
对于b/s应用程序,在部署到正式环境运行的过程中,很有可能出现一些在前期测试过程中没有发现的一些异常或者错误,或者说只有在特定条件满足时才会发生的一些异常,对于使用asp.net mvc开发的应用程序站点,在部署到iis上后,如果开发人员未对程序进行错误处理,那么一旦程序出现未处理的错误或异常,用户将看到一个让人感到及其困惑的错误堆栈跟踪页面,使得站点的用户体验下降,从程序的角度上来说,不做自定义错误处理也不利于程序出问题时的根源查找,因为很多时候有些错误只在特定条件下满足时才重现,一旦错过,可能就需要花大量时间去测试来重现问题,如果此时开发人员有对程序中的运行时异常进行日志记录,那么或许将提供一些有价值的错误根源信息,下面我将向下大家讲解如何实现自定义异常处理并跳转到友好的错误提示页面。
二、异常处理&自定义错误页
1、通过异常过滤器 实现异常处理和自定义错误页
asp.net mvc 提供了 异常过滤器 的方式来实现当执行controller中某个action方法时抛出了未处理的异常时的捕捉,mvc中的异常过滤器是以特性(attribute)的形式存在的,定义一个自定义异常过滤器只需要两个步骤:
1、定义一个类,继承filterattribute类,并实现iexceptionfilter接口 2、应用自定义异常过滤器至指定的 action方法 或 controller类 或 全局应用。
异常过滤器代码
using log4net; using system; using system.collections.generic; using system.linq; using system.web; using system.web.mvc; namespace blog20180413.filters { public class customexceptionfilterattribute : filterattribute, iexceptionfilter { //log4net组件,用于日志记录。 static readonly ilog log = logmanager.getlogger(typeof(customexceptionfilterattribute)); public void onexception(exceptioncontext filtercontext) { //对捕获到的异常信息进行日志记录,方便开发人员排查问题。 log.error("应用程序异常", filtercontext.exception); //跳转到自定义的错误页,增强用户体验。 actionresult result = new viewresult() { viewname = "customerrorpage" }; filtercontext.result = result; //异常处理结束后,一定要将exceptionhandled设置为true,否则仍然会继续抛出错误。 filtercontext.exceptionhandled = true; } } }
使用异常过滤器
using blog20180413.filters; using system; using system.collections.generic; using system.linq; using system.web; using system.web.mvc; namespace blog20180413.controllers { public class testexceptionhandlecontroller : controller { [customexceptionfilter] public actionresult index() { string str = string.empty; //将抛出转换异常 int result = int.parse(str); return view(); } } }
注意:
第二个步骤中提到,可以将自定义异常过滤器 只应用到 action或者controller,如果只想将指定的异常过滤器以特性的形式应用到指定的一个或者多个controller或者action,而不想应用到所有的controller或者action,那么必须将该异常过滤器继承filterattribute类,这是因为mvc框架是通过filterattributefilterprovider.getfilters来获取标记在指定controller或者action上的异常过滤器特性的,而getfilters内部逻辑要求必须继承自filterattribute类。
如果需要将自定义的异常过滤器应用到所有的controller的action上,那么需要将该自定义异常过滤器注册到全局,代码如下:
using blog20180413.filters; using system.web; using system.web.mvc; namespace blog20180413 { public class filterconfig { public static void registerglobalfilters(globalfiltercollection filters) { filters.add(new customexceptionfilterattribute()); } } }
2、通过在global.asax 中定义application_error方法 实现异常处理和自定义错误页
上面提到的 自定义异常过滤器只能捕获在执行action方法过程中抛出的异常(即使注册为全局过滤器也只能捕获action方法执行过程中抛出的异常),如果需要捕获更高级别的异常,也就是在请求执行过程中出现的任何异常(如在控制器的构造函数中抛出异常),那么可以使用该种方式,代码如下:
using log4net; using log4net.config; using system; using system.collections.generic; using system.io; using system.linq; using system.web; using system.web.mvc; using system.web.routing; namespace blog20180413 { public class mvcapplication : system.web.httpapplication { static readonly ilog log = logmanager.getlogger(typeof(mvcapplication)); protected void application_start() { arearegistration.registerallareas(); filterconfig.registerglobalfilters(globalfilters.filters); routeconfig.registerroutes(routetable.routes); xmlconfigurator.configureandwatch(new fileinfo(server.mappath("~/web.config"))); } protected void application_error(object sender, eventargs e) { exception exception = server.getlasterror(); //server.clearerror(); //这里记录错误日志信息 log.error("mvcapplication 捕获异常", exception); //跳转到指定的自定义错误页 response.redirect("/customerrorhandle/customerrorpage"); } } }
3、通过配置system.web->customerrors节点 实现自定义错误页
当你的站点发生异常时,如果你只是想简单的跳转到一个自定义错误页面,而不是对异常进一步处理时,那么你可以简单的作如下配置操作即可:
需要在web.config中做如下配置:
<system.web> <customerrors mode="on" defaultredirect="customerrorpage"> </customerrors> </system.web>
注意:这里的customerrorpage是一个视图文件,放在shared共享目录下。
如果你注册了handleerrorattribute异常过滤器到全局,那么在你的错误页中将能获取到和异常相关的一些信息。但此时配置到defaultredirect的值的必须是error
也就是自定义错误视图页面的名称必须为error.cshtml,并且放在shared目录,当然,你也可以通过在创建handleerrorattribute全局过滤器的过程中,设置器view属性,这样你就可以不用讲错误视图的名称设置为error了.如下:
public static void registerglobalfilters(globalfiltercollection filters) { handleerrorattribute errorattribute = new handleerrorattribute(); errorattribute.view = "customerrorpage"; filters.add(errorattribute); }
注册handleerrorattribute(使用默认的错误视图页面文件名)
public class filterconfig { public static void registerglobalfilters(globalfiltercollection filters) { filters.add(new handleerrorattribute()); } }
定义error.cshtml视图页
@{ layout = null; } @model handleerrorinfo <!doctype html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>error</title> </head> <body> <div> @*通过handleerrorattribute异常过滤器捕获到的异常信息存储在model属性中*@ @model.exception.message </div> </body> </html>
之所以通过注册handleerrorattribute过滤器捕获的异常在错误页中能获取异常信息可以看handleerrorattribute类的内部实现,发现加载错误视图页面的过程中,传递了一个handleerrorinfo对象过去。
public virtual void onexception(exceptioncontext filtercontext) { if (filtercontext == null) { throw new argumentnullexception("filtercontext"); } if (!filtercontext.ischildaction && (!filtercontext.exceptionhandled && filtercontext.httpcontext.iscustomerrorenabled)) { exception innerexception = filtercontext.exception; if ((new httpexception(null, innerexception).gethttpcode() == 500) && this.exceptiontype.isinstanceoftype(innerexception)) { string controllername = (string) filtercontext.routedata.values["controller"]; string actionname = (string) filtercontext.routedata.values["action"]; handleerrorinfo model = new handleerrorinfo(filtercontext.exception, controllername, actionname); viewresult result = new viewresult { viewname = this.view, mastername = this.master, viewdata = new viewdatadictionary<handleerrorinfo>(model), tempdata = filtercontext.controller.tempdata }; filtercontext.result = result; filtercontext.exceptionhandled = true; filtercontext.httpcontext.response.clear(); filtercontext.httpcontext.response.statuscode = 500; filtercontext.httpcontext.response.tryskipiiscustomerrors = true; } } }
public string view { get { if (string.isnullorempty(this._view)) { return "error"; } return this._view; } set => (this._view = value); }
三、总结
总的来说,application_error方法用于处理针对请求管道级别的发生的异常错误,而mvc异常过滤器则只能处理在执行action方法过程中出现的异常.能处理的范围相对application_error较小,但在实际项目开发中,用mvc异常过滤器处理异常相对会多一点,因为我们的功能业务往往体现在控制器的action方法执行的过程中,也就是在这个过程中较容易产生异常。故开发中用mvc异常过滤器就能适应大部分的异常处理需求。
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。