声明:本方式及代码只使用与.NET Web API.

先创建类继承ExceptionFilterAttribute类型并复写OnException方法。

代码如下:

using System;
using System.IO;
using System.Net.Http;
using System.Text;
using System.Web.Http.Filters;
using FrameWork.Common;
using FrameWork.Common.Const; namespace FrameWork.Web.Handle
{
/// <summary>
/// 处理错误信息
/// </summary>
public class ErrorHandleAttribute : ExceptionFilterAttribute
{
public override void OnException(HttpActionExecutedContext filterContext)
{
// 错误处理
base.OnException(filterContext);
var sb = new StringBuilder();
sb.AppendLine("参数:"+ GetExceptionMessage(filterContext));
sb.AppendLine("异常内容:"+ filterContext.Exception.ToJson());
Log4NetHelp.Error(sb.ToString());
filterContext.Response = GetResponse(sb.ToString());
} /// <summary>
/// 处理错误信息为方便开发人员阅读的格式,包括接口地址以及参数
/// </summary>
/// <param name="actionExecutedContext">异常内容</param>
private string GetExceptionMessage(HttpActionExecutedContext actionExecutedContext)
{
var session = System.Web.HttpContext.Current.Session;
var request = System.Web.HttpContext.Current.Request;
var guid = Guid.NewGuid().ToString();
var task = actionExecutedContext.ActionContext.Request.Content.ReadAsStreamAsync();
var content = string.Empty;
try
{
var sm = task.Result;
if (sm != null)
{
sm.Seek(, SeekOrigin.Begin);
var len = (int)sm.Length;
var inputByts = new byte[len];
sm.Read(inputByts, , len);
sm.Close();
content = Encoding.UTF8.GetString(inputByts);
sm.Close();
}
}
catch (Exception e)
{
return e.Message;
} var sessionId = session == null ? "" : session.SessionID;
var pars = string.Format("error:\r\n id = {3};\r\n sessionId = {0};\r\n url = {1};\r\n contentType = {4};\r\n content = {2};"
, sessionId
, request.RawUrl
, content
, guid
, request.ContentType); return pars;
} /// <summary>
/// 处理错误信息后执行的方法
/// </summary>
/// <param name="mes">错误信息</param>
private HttpResponseMessage GetResponse(string mes)
{
return JsonHelper.ToJson(new
{
Info = CommonConst.FailStr,
Message = mes,
Msg = false,
ResultCode = CommonConst.FailCode
});
}
}
}

如何使用呢?

只需要在需要捕捉异常的控制器加上[ErrorHandle]即可。

例如:

    [ErrorHandle]
public abstract class AdminControllerBase : Controller
{
//代码逻辑
}

如果继承AdminControllerBase或者带有[ErrorHandle]特性的类和方法出现了错误,都会执行OnException方法。

可以在处理异常的方法里面加上自己想要的逻辑处理。

也可以直接在WebApiConfig.cs文件中加上

 config.Filters.Add(new WebApiErrorHandleAttribute());

这样就是全局捕捉异常了,只要接口内部没有try…catch,那么其他所有的异常都会捕捉到。

.NET WebAPI 利用特性捕捉异常的更多相关文章

  1. .NET [MVC] 利用特性捕捉异常

    声明:本代码只适用于.NET MVC. 先创建一个类继承ActionFilterAttribute这个抽象类以及实现IExceptionFilter接口,并实现它的方法OnException. 代码如 ...

  2. .NET Core[MVC] 利用特性捕捉异常

    声明:本方式适用于MVC.本代码只适用于.NET Core MVC. 先创建一个类继承ExceptionFilterAttribute这个抽象类,并override它的方法OnException. 代 ...

  3. 如何在方法上贴上attribute(特性)捕捉方法的异常,来实现我们的需求

    在方法上贴上attribute(特性)捕捉方法的异常,其实这么做也是为了在项目中不会大量使用try-cacth这样的语句,同时使我们的代码看起来更简洁,更直观,将逻辑业务分离使得后期维护方便.这里我们 ...

  4. MVC 应用程序级别捕捉异常

    捕捉异常: using System; using System.IO; using System.Net; using System.Net.Http; using System.Net.Http. ...

  5. C#开发---利用特性自定义数据导出到Excel

    网上C#导出Excel的方法有很多.但用来用去感觉不够自动化.于是花了点时间,利用特性做了个比较通用的导出方法.只需要根据实体类,自动导出想要的数据  1.在NuGet上安装Aspose.Cells或 ...

  6. webapi 利用webapiHelp和swagger生成接口文档

    webapi 利用webapiHelp和swagger生成接口文档.均依赖xml(需允许项目生成注释xml) webapiHelp:微软技术自带,仅含有模块.方法.请求-相应参数的注释. swagge ...

  7. MVC WebAPI框架里设置异常返回格式统一

    webApi里设置全局异常返回格式今天为了设置api返回格式统一,在网上找了一推资料,各种资料参差不齐的,最后自己捣鼓,终于弄出来了,直接上代码 /// <summary> /// 消息代 ...

  8. ABP捕捉异常错误代码

    在服务层或者CORE层  随便哪里都可以  创建一个捕捉异常的文件夹  里面写一个LonsidException类 继承后面的接口  然后重写继承的方法  这样在ABP项目运行阶段  无论在哪里出现异 ...

  9. zzw原创_oracle循环中的异常捕捉_捕捉异常后并继续循环

    例子如下 set serveroutput on; declare   V_SQL VARCHAR2(255);   errorCode number; --异常编码     errorMsg var ...

随机推荐

  1. vue-router路由学习总结

    vue路由 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF ...

  2. su;su -;sudo;sudo -i;sudo su;sudo su - 之间的区别

    今天我们来聊聊su;su -;sudo;sudo -i;sudo su;sudo su -他们之间的区别. su :su 在不加任何参数,默认为切换到root用户,但没有转到root用户家目录下,也就 ...

  3. Mesos源码分析(13): MesosContainerier运行一个Task

    MesosContainerizer的实现在文件src/slave/containerizer/mesos/containerizer.cpp中   Future<bool> MesosC ...

  4. ArrayList源码理解

    ArrayList是基于数组实现的,是一个动态数组,其容量能自动增长,类似于C语言中的动态申请内存,动态增长内存. ArrayList不是线程安全的,只能用在单线程环境下,多线程环境下可以考虑用Col ...

  5. Dubbo支持的协议的详解

    Dubbo支持dubbo.rmi.hessian.http.webservice.thrift.redis等多种协议,但是Dubbo官网是推荐我们使用Dubbo协议的.下面我们就针对Dubbo的每种协 ...

  6. [Swift]LeetCode115. 不同的子序列 | Distinct Subsequences

    Given a string S and a string T, count the number of distinct subsequences of S which equals T. A su ...

  7. [Swift]LeetCode474. 一和零 | Ones and Zeroes

    In the computer world, use restricted resource you have to generate maximum benefit is what we alway ...

  8. [Swift]LeetCode748. 最短完整词 | Shortest Completing Word

    Find the minimum length word from a given dictionary words, which has all the letters from the strin ...

  9. [Swift]LeetCode915.将分区数组分成不相交的间隔 | Partition Array into Disjoint Intervals

    Given an array A, partition it into two (contiguous) subarrays left and right so that: Every element ...

  10. Python内置函数(30)——hex

    英文文档: hex(x) Convert an integer number to a lowercase hexadecimal string prefixed with “0x”, for exa ...