📜  ASP.NET Core-异常

📅  最后修改于: 2020-11-21 04:53:36             🧑  作者: Mango


在本章中,我们将讨论异常和错误处理。当您的ASP.NET Core应用程序中发生错误时,您可以通过多种方式来处理它们。让我们看看可通过诊断程序包获得的另一中间件。这段中间件将帮助我们处理错误。

为了模拟错误,让我们转到app.Run ,看看如果每次遇到此中间件时都抛出异常,应用程序的行为。

using Microsoft.AspNet.Builder; 
using Microsoft.AspNet.Hosting; 
using Microsoft.AspNet.Http; 

using Microsoft.Extensions.DependencyInjection; 
using Microsoft.Extensions.Configuration;  

namespace FirstAppDemo { 
   public class Startup { 
      public Startup() { 
         var builder = new ConfigurationBuilder() 
            .AddJsonFile("AppSettings.json"); 
         Configuration = builder.Build(); 
      }  
      public IConfiguration Configuration { get; set; }  
        
      // This method gets called by the runtime. 
      // Use this method to add services to the container. 
      // For more information on how to configure your application, 
      // visit http://go.microsoft.com/fwlink/?LinkID=398940 
      public void ConfigureServices(IServiceCollection services) { 
      }  
      
      // This method gets called by the runtime. 
      // Use this method to configure the HTTP request pipeline.
      public void Configure(IApplicationBuilder app) { 
         app.UseIISPlatformHandler();  
         app.UseRuntimeInfoPage();  
         
         app.Run(async (context) => { 
            throw new System.Exception("Throw Exception"); 
            var msg = Configuration["message"]; 
            await context.Response.WriteAsync(msg); 
         });  
      }  
        
      // Entry point for the application. 
      public static void Main(string[] args) => WebApplication.Run(args); 
   }   
} 

它将抛出异常并带有非常通用的消息。保存Startup.cs页面并运行您的应用程序。

一般讯息

您将看到我们无法加载该资源。出现HTTP 500错误,内部服务器错误,但这不是很有帮助。获取一些异常信息可能会很好。

让我们添加另一个中间件,即UseDeveloperExceptionPage

// This method gets called by the runtime.  
// Use this method to configure the HTTP request pipeline. 
public void Configure(IApplicationBuilder app) { 
   app.UseIISPlatformHandler();  
   app.UseDeveloperExceptionPage(); 
   app.UseRuntimeInfoPage();  
   
   app.Run(async (context) => { 
      throw new System.Exception("Throw Exception"); 
      var msg = Configuration["message"]; 
      await context.Response.WriteAsync(msg); 
   });  
}
  • 该中间件与其他中间件略有不同,其他中间件通常会查看传入的请求并对该请求做出一些决定。

  • UseDeveloperExceptionPage不太关心传入的请求,因为它会在稍后的管道中进行处理。

  • 它只是调用下一个中间件,但随后将等待查看管道中是否有任何东西会生成异常,如果有异常,则该中间件将为您提供一个错误页面,其中包含一些内容。有关该异常的其他信息。

现在让我们再次运行该应用程序。它将产生输出,如以下屏幕截图所示。

内部服务器错误

现在,如果开发中有错误,您将看到一些期望的信息。您还将获得堆栈跟踪,并且可以看到Startup.cs的第37行抛出了未处理的异常。

您还可以看到原始异常的详细信息,所有这些信息对开发人员都非常有用。实际上,我们可能只想在开发人员运行应用程序时显示此信息。