1. 程式人生 > >.NETcore掛載服務,初始化,異常處理等

.NETcore掛載服務,初始化,異常處理等

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;

namespace GitCenter
{
	public class Startup
	{
		public Startup()
		{

		}

		public void ConfigureServices(IServiceCollection services)  //指定服務描述符集合的合同。
		{
			services
			.AddMvc()//將MVC服務新增到指定的服務集合
			.SetCompatibilityVersion(CompatibilityVersion.Version_2_1)//為應用程式設定ASP.NET Core MVC的相容版本。//指定由Microsoft.AspNetCore.Mvc.MvcOptions配置的執行時行為的版本相容性。
			.AddSessionStateTempDataProvider()//將會話狀態臨時資料提供程式註冊為服務集合中的預設臨時資料提供程式。 
				.AddJsonOptions(options => //全域性配置Json序列化處理
				{
					//不使用駝峰樣式的key
					options.SerializerSettings.ContractResolver = new DefaultContractResolver();
					//忽略迴圈引用
					options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; 
					//設定時間格式
					options.SerializerSettings.DateFormatString = "yyyy-MM-dd";
				}
			);
			services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();//Adds a singleton service of the type specified in TService with an implementation type specified in TImplementation to the specified Microsoft.Extensions.DependencyInjection.IServiceCollection.
		}
		/// <summary>
		/// 
		/// </summary>
		/// <param name="app">定義一個類,該類提供配置應用程式請求管道的機制。</param>
		/// <param name="env">提供有關執行應用程式的Web託管環境的資訊。</param>
		public void Configure(IApplicationBuilder app, IHostingEnvironment env)
		{
			//檢查當前主機環境名稱是否為Microsoft.AspNetCore.Hosting.EnvironmentName.Development。
			if (env.IsDevelopment())
			{
				app.UseDeveloperExceptionPage();//從管道捕獲同步和非同步System.Exception例項並生成HTML錯誤響應。
			}
			else
			{
				app.UseExceptionHandler("/Error");//向管道新增中介軟體,以捕獲異常,記錄異常,重置請求路徑,然後重新執行請求。 如果響應已經開始,則不會重新執行請求。
			}
			app.UseStaticHttpContext();
			app.UseMiddleware(typeof(ErrorHandlingMiddleware));
			app.UseMvc(routes =>
			{
				routes.MapRoute("default", "api/{controller=Home}/{action=Index}/{id?}");
			});
		}
	}
}