這篇文章主要為大家詳細介紹了ASP.NET Core異常和錯誤處理的相關資料,具有一定的參考價值,感興趣的小夥伴們可以參考一下
在這一章,我們將討論異常和錯誤處理。當 ASP.NET Core應用程式中發生錯誤時,您可以以各種不同的方式來處理。讓我們來看看通過添加一個中介軟體來處理異常情況,這個中介軟體將協助我們處理錯誤。
要類比出錯,讓我們轉到應用程式,運行,如果我們只是拋出異常的話,看看程式是如何運轉轉的。
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<Startup>(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行有一個未處理的異常拋出。
所有這些異常資訊對開發人員將非常有用。事實上,我們可能只希望當開發人員運行應用程式時才顯示這些異常資訊。