• global中捕获异常


      前言:由于现在日志非常重要,但是在哪里打写日志比较好呢,我选择的是在global中,把错误代码网上抛,而不是在底层写大量的try catch然后在catch中来写日志,每个catch中的写日志这样就会避免了很多重复代码。当然这是目前我们采取的一个方法,大家可以提出更好地方法来管理日志,下面我开始写代码

    第一步:尽量抛弃项目中try catch。看下代码

    private void ExceptionTestOne()
            {           
                    int a = 1;
                    int b = 0;
                    int c = a/b;                
            }

    上面代码会抛一个异常

    第二步:如果项目中必须用try catch怎么办,因为有时候连接wcf的时候如果出现异常时候我们需要关闭连接避免堵塞,那么我们就采取抛异常的方法

    private void ExceptionTestTwo()
            {
                try
                {
                    List<Simple> simples = null;
                    simples.Add(new Simple() { Name = "发生异常" });
                }
                catch (Exception ex)
                {                
                    throw new Exception("",ex);
                }        
            }

    第三步:我们新建一个global.asax 在Application_Error中把异常信息加入队列中 如下

     //创建一个静态的队列记录把异常都放在队列中
     private static Queue<Exception> queue = new Queue<Exception>();
    
     protected void Application_Error(object sender, EventArgs e)
             {
                Exception exp = Server.GetLastError();
                if (exp != null) {
                    queue.Enqueue(exp);
                }
    
                Server.ClearError();
            }

    第四步:异常信息加入日志(这里为了简单就写入txt文本中了)

    protected void Application_Start(object sender, EventArgs e) {
                ThreadPool.QueueUserWorkItem(a => {
                    while (true) {
                        try {
                            if (queue.Count > 0) {
                                Exception ex = queue.Dequeue();
                                WriteLog(ex);
                            }
                            else {
                                System.Threading.Thread.Sleep(TimeSpan.FromSeconds(3));
                            }
                        }
                        catch (Exception ex) {
                        WriteLog(ex);

    } } }); }
        private void WriteLog(Exception ex)
            {
                if (!File.Exists(@"E:C#系列ExceptionDealWithExceptionDealWithLog.txt")) {
                    FileStream fs1 = new FileStream(@"E:C#系列ExceptionDealWithExceptionDealWithLog.txt", FileMode.Create, FileAccess.Write);//创建写入文件 
                    StreamWriter sw = new StreamWriter(fs1);
                    sw.WriteLine(ex.Message);//开始写入值
                    sw.Close();
                    fs1.Close();
                }
                else
                {
                    StreamWriter sr = File.AppendText(@"E:C#系列ExceptionDealWithExceptionDealWithLog.txt");    
                    sr.WriteLine(ex.Message);
                    sr.Close();                
                }
            }

    当然接入错误信息你可以多定义几个比喻ip地址,堆栈信息错误等基本就是这么多了。这是基本思路。有日志了我就就可以根据时间,ip等进行查询日志日志信息

     下载

  • 相关阅读:
    Linux 基本操作 (day2)
    Linux 简介(day1)
    python 反射、md5加密
    Python 简易版选课系统
    python 类与类之间的关系
    python 基本运算符
    python 基础操作--数据类型
    python初识
    生成器和生成器表达式
    SpringMvc测试框架详解----服务端测试
  • 原文地址:https://www.cnblogs.com/LipeiNet/p/4865135.html
Copyright © 2020-2023  润新知