ASP.NET Core 2 學習筆記(二)

来源:https://www.cnblogs.com/snaildev/archive/2018/05/22/9071119.html
-Advertisement-
Play Games

要瞭解程式的運行原理,就要先知道程式的進入點及生命周期。以往ASP.NET MVC的啟動方式,是繼承 HttpApplication 作為網站開始的進入點,而ASP.NET Core 改變了網站的啟動方式,變得比較像是 Console Application。 本篇將介紹ASP.NET Core 的 ...


要瞭解程式的運行原理,就要先知道程式的進入點及生命周期。以往ASP.NET MVC的啟動方式,是繼承 HttpApplication 作為網站開始的進入點,而ASP.NET Core 改變了網站的啟動方式,變得比較像是 Console Application。

本篇將介紹ASP.NET Core 的程式生命周期 (Application Lifetime) 及捕捉 Application 停止啟動事件。

程式進入點

.NET Core 把 Web 及 Console 項目都處理成一樣的啟動方式,預設以 Program.cs 的 Program.Main 作為程式入口,再從程式入口把 ASP.NET Core 網站實例化。個人覺得比ASP.NET MVC 繼承 HttpApplication 的方式簡潔許多。

通過 .NET Core CLI 創建的 Program.cs 內容大致如下:
Program.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;

namespace MyWebsite
{
    public class Program
    {
        public static void Main(string[] args)
        {
            BuildWebHost(args).Run();
        }

        public static IWebHost BuildWebHost(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseStartup<Startup>()
                .Build();
    }
}

Program.Main 通過 BuildWebHost 方法取得 WebHost 後,再運行 WebHost;WebHost 就是 ASP.NET Core 的網站實例。

  • WebHost.CreateDefaultBuilder
    通過此方法建立 WebHost Builder。WebHost Builder 是用來生成 WebHost 的對象。
    可以在 WebHost 生成之前設置一些前置動作,當 WebHost 建立完成時,就可以使用已準備好的物件等。
  • UseStartup
    設置該 Builder 生成的 WebHost 啟動後,要執行的類。
  • Build
    當前置準備都設置完成後,就可以調用 WebHost Builder 方法實例化 WebHost,並得到該實例。
  • Run
    啟動 WebHost。

Startup.cs

當網站啟動後,WebHost會實例化 UseStartup 設置的Startup類,並且調用以下兩個方法:

  • ConfigureServices
  • Configure

通過 .NET Core CLI生成的Startup.cs 內容大致如下:

Startup.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;

namespace MyWebsite
{
    public class Startup
    {
        // 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 https://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, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.Run(async (context) =>
            {
                await context.Response.WriteAsync("Hello World!");
            });
        }
    }
}
  • ConfigureServices
    ConfigureServices 是用來將服務註冊到 DI 容器用的。這個方法可不實現,並不是必要的方法。

  • Configure
    這個是必要的方法,一定要實現。但 Configure 方法的參數並不固定,參數的實例都是從 WebHost 註入進來,可依需求增減需要的參數。
    • IApplicationBuilder 是最重要的參數也是必要的參數,Request 進出的 Pipeline 都是通過 ApplicationBuilder 來設置。

對 WebHost 來說 Startup.cs 並不是必要存在的功能。
可以試著把 Startup.cs 中的兩個方法,都改成在 WebHost Builder 設置,變成啟動的前置準備。如下:

Program.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;

namespace MyWebsite
{
    public class Program
    {
        public static void Main(string[] args)
        {
            BuildWebHost(args).Run();
        }

        public static IWebHost BuildWebHost(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .ConfigureServices(services =>
                {
                    // ...
                })
                .Configure(app =>
                {
                    app.Run(async (context) =>
                    {
                        await context.Response.WriteAsync("Hello World!");
                    });
                })
                .Build();
    }
}

把 ConfigureServices 及 Configure 都改到 WebHost Builder 註冊,網站的執行結果是一樣的。

兩者之間最大的不同就是調用的時間點不同。

  • 在 WebHost Builder 註冊,是在 WebHost 實例化之前就調用。
  • 在 Startup.cs 註冊,是在 WebHost 實例化之後調用。

但 Configure 無法使用除了 IApplicationBuilder 以外的參數。
因為在 WebHost 實例化前,自己都還沒被實例化,怎麼可能會有有對象能註入給 Configure

Application Lifetime

除了程式進入點外,WebHost的啟動和停止也是網站事件很重要一環,ASP.NET Core不像ASP.NET MVC用繼承的方式捕捉啟動及停止事件,而是透過Startup.Configure註入IApplicationLifetime來補捉Application啟動停止事件。

IApplicationLifetime有三個註冊監聽事件及終止網站事件可以觸發。如下:

 

public interface IApplicationLifetime
{
  CancellationToken ApplicationStarted { get; }
  CancellationToken ApplicationStopping { get; }
  CancellationToken ApplicationStopped { get; }
  void StopApplication();
}
  • ApplicationStarted
    當WebHost啟動完成後,會執行的啟動完成事件。
  • ApplicationStopping
    當WebHost觸發停止時,會執行的準備停止事件。
  • ApplicationStopped
    當WebHost停止事件完成時,會執行的停止完成事件。
  • StopApplication
    可以通過此方法主動觸發終止網站。

示例

通過Console輸出執行的過程,示例如下:

Program.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;

namespace MyWebsite
{
    public class Program
    {
        public static void Main(string[] args)
        {
            Output("Application - Start");
            var webHost = BuildWebHost(args);
            Output("Run WebHost");
            webHost.Run();
            Output("Application - End");
        }

        public static IWebHost BuildWebHost(string[] args)
        {
            Output("Create WebHost Builder");
            var webHostBuilder = WebHost.CreateDefaultBuilder(args)
                .ConfigureServices(services =>
                {
                    Output("webHostBuilder.ConfigureServices - Called");
                })
                .Configure(app =>
                {
                    Output("webHostBuilder.Configure - Called");
                })
                .UseStartup<Startup>();

            Output("Build WebHost");
            var webHost = webHostBuilder.Build();

            return webHost;
        }

        public static void Output(string message)
        {
            Console.WriteLine($"[{DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")}] {message}");
        }
    }
}

Startup.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;

namespace MyWebsite
{
    public class Startup
    {
        public Startup()
        {
            Program.Output("Startup Constructor - Called");
        }

        // 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 https://go.microsoft.com/fwlink/?LinkID=398940
        public void ConfigureServices(IServiceCollection services)
        {
            Program.Output("Startup.ConfigureServices - Called");
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IApplicationLifetime appLifetime)
        {
            appLifetime.ApplicationStarted.Register(() =>
            {
                Program.Output("ApplicationLifetime - Started");
            });

            appLifetime.ApplicationStopping.Register(() =>
            {
                Program.Output("ApplicationLifetime - Stopping");
            });

            appLifetime.ApplicationStopped.Register(() =>
            {
                Thread.Sleep(5 * 1000);
                Program.Output("ApplicationLifetime - Stopped");
            });

            app.Run(async (context) =>
            {
                await context.Response.WriteAsync("Hello World!");
            });

            // For trigger stop WebHost
            var thread = new Thread(new ThreadStart(() =>
            {
                Thread.Sleep(5 * 1000);
                Program.Output("Trigger stop WebHost");
                appLifetime.StopApplication();
            }));
            thread.Start();

            Program.Output("Startup.Configure - Called");
        }
    }
}

執行結果

輸出內容少了webHostBuilder.Configure - Called,因為Configure只能有一個,後註冊的Configure會把之前註冊的覆蓋掉。

程式執行流程如下:

 

參考

Application startup in ASP.NET Core 
Hosting in ASP.NET Core

 

老司機發車啦:https://github.com/SnailDev/SnailDev.NETCore2Learning


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天我們來探索一下Singleton設計模式的實現及應用場景。 Singleton模式屬於Creational Type(創建型)設計模式的一種。該模式一般用於確保在應用中僅創建一個某類的instance,在應用中的各個地方對該類的實例對象的引用均指向同一instacne。 Singleton模式的 ...
  • 20180522更新內容 本次更新增加了excel導入導出示例,QuerySuite組件實現導出導出,用最少代碼,做最多的事,代碼就是如此簡單。 計劃修改內容 1、人臉登錄功能需要重構,目前功能不完善。 2、QuerySuite類重構,同時支持mysql,oracle 3、增加視頻處理功能。 4、分 ...
  • 背景: 個人電腦 安裝的 VS2015 Community 社區版。 一直用得挺好,都忘了要登錄。 直到近來,30天試用期過 —— VS彈窗:要登錄用戶名、密碼 才能繼續使用。 但是,輸入了無數次 郵箱,到下一步時,都彈出一個 白屏視窗 —— 死活沒法登錄成功。 登錄不成功,日子還得過。 尊重著作權 ...
  • 下載安裝 "Erlang" "RabbitMQ" 啟動RabbitMQ管理平臺插件 DOS下進入到安裝目錄\sbin,執行以下命令 當出現以下結果時,重啟RabbitMQ服務 訪問 "http://localhost:15672" (賬號密碼:guest) 註意:以下為C 代碼,請引用NuGet包: ...
  • 最近在做一個關於生成word文檔的功能,期間出現了幾個問題,也不算棘手,但是對於第一次使用office組件的人來說,就比較麻煩了,也不知道為何出現這個錯誤,其中本問題解決費的時間較多,特此記錄,以後方便查閱。 先將問題的場景大體介紹一下: 1、客戶端及服務端安裝的辦公軟體為wps; 2、已存在使用M ...
  • 現在新建的WTS模板,預設最低版本是16299了,目標版本是17134 17134到來之前,就感覺到會這樣,不過終究還是來了。 不支持15063的原因是導航菜單Windows.UI.Xaml.Controls.NavigationView變了,替代了之前的HamburgerMenu,加入了流暢元素。 ...
  • 在這之前打算用Apache的Log4Net,但是發現其AdoNetAppender方法已經不存在了,無法使用配置文件直接輸出到資料庫了,因此我便改用了NLog框架。 一、對項目添加NLog 通過Nuget安裝NLog NLog.Extensions.Logging、NLog.Web.AspNetCo ...
  • 在涉及老項目數據遷移的時候,資料庫結構已經完全發生變化,而且需要對老數據進行特殊欄位的處理,而且數據量較大,使用Navicat導出單表之後,一個表數據大概在100多萬的樣子,直接導出SQL執行根本行不通,執行到一般就GG。 之後嘗試使用LINQ PAD直接操作兩個資料庫進行數據遷移,搜索一番,得知L ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...