ASP.NET Core Web 主机ASP.NET Core Web Host

本文内容

ASP.NET Core 应用配置和启动“主机” 。主机负责应用程序启动和生存期管理。至少,主机配置服务器和请求处理管道。主机还可以设置日志记录、依赖关系注入和配置。

本文介绍了只适用于实现后向兼容性的 Web 主机。建议对所有应用类型使用通用主机

本文介绍了用于托管 Web 应用的 Web 主机。对于其他类型的应用,请使用通用主机

设置主机Set up a host

创建使用 IWebHostBuilder 实例的主机。通常在应用的入口点来执行 Main 方法。

在项目模板中,Main 位于 Program.cs 。典型应用调用 CreateDefaultBuilder 来开始创建主机:

  1. public class Program
  2. {
  3. public static void Main(string[] args)
  4. {
  5. CreateWebHostBuilder(args).Build().Run();
  6. }
  7. public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
  8. WebHost.CreateDefaultBuilder(args)
  9. .UseStartup<Startup>();
  10. }

调用 CreateDefaultBuilder 的代码位于名为 CreateWebHostBuilder 的方法中,这让它区分于 Main 中对生成器对象调用 Run 的代码。如果使用 Entity Framework Core 工具,必须有这种区分。这些工具希望找到 CreateWebHostBuilder 方法,可以在设计时调用此方法来配置主机,而无需运行应用。一种替代方法是实现 IDesignTimeDbContextFactory有关详细信息,请参阅设计时 DbContext 创建

CreateDefaultBuilder 执行下列任务:

ConfigureAppConfigurationConfigureLogging 以及 IWebHostBuilder 的其他方法和扩展方法可重写和增强 CreateDefaultBuilder 定义的配置。下面是一些示例:

  • ConfigureAppConfiguration 用于指定应用的其他 IConfiguration。下面的 ConfigureAppConfiguration 调用添加委托,以在 appsettings.xml 文件中添加应用配置。可多次调用 ConfigureAppConfiguration。请注意,此配置不适用于主机(例如,服务器 URL 或环境)。请参阅主机配置值部分。
  1. WebHost.CreateDefaultBuilder(args)
  2. .ConfigureAppConfiguration((hostingContext, config) =>
  3. {
  4. config.AddXmlFile("appsettings.xml", optional: true, reloadOnChange: true);
  5. })
  6. ...
  • 下面的 ConfigureLogging 调用添加委托,以将最小日志记录级别 (SetMinimumLevel) 配置为 LogLevel.Warning。此设置重写 CreateDefaultBuilder 在 appsettings.Development.json 和 appsettings.Production.json 中配置的设置,分别为 LogLevel.DebugLogLevel.Error。可多次调用 ConfigureLogging
  1. WebHost.CreateDefaultBuilder(args)
  2. .ConfigureLogging(logging =>
  3. {
  4. logging.SetMinimumLevel(LogLevel.Warning);
  5. })
  6. ...
  • 下面调用 ConfigureKestrel 来重写 CreateDefaultBuilder 在配置 Kestrel 时建立的 30,000,000 字节默认 Limits.MaxRequestBodySize
  1. WebHost.CreateDefaultBuilder(args)
  2. .ConfigureKestrel((context, options) =>
  3. {
  4. options.Limits.MaxRequestBodySize = 20000000;
  5. });
  1. WebHost.CreateDefaultBuilder(args)
  2. .UseKestrel(options =>
  3. {
  4. options.Limits.MaxRequestBodySize = 20000000;
  5. });

内容根 确定主机搜索内容文件(如 MVC 视图文件)的位置。应用从项目的根文件夹启动时,会将项目的根文件夹用作内容根。这是 Visual Studiodotnet new 模板中使用的默认值。

有关应用配置的详细信息,请参阅 ASP.NET Core 中的配置

备注

作为使用静态 CreateDefaultBuilder 方法的替代方法,从 WebHostBuilder 创建主机是一种受 ASP.NET Core 2.x 支持的方法。

设置主机时,可以提供配置ConfigureServices 方法。如果指定 Startup 类,必须定义 Configure 方法。有关详细信息,请参阅 ASP.NET Core 中的应用启动多次调用 ConfigureServices 将追加到另一个。多次调用 WebHostBuilder 上的 ConfigureUseStartup 将替换以前的设置。

主机配置值Host configuration values

WebHostBuilder 依赖于以下的方法设置主机配置值:

  • 主机生成器配置,其中包括格式 ASPNETCORE_{configurationKey} 的环境变量。例如 ASPNETCORE_ENVIRONMENT
  • UseContentRootUseConfiguration 等扩展(请参阅重写配置部分)。
  • UseSetting 和关联键。使用 UseSetting 设置值时,该值设置为无论何种类型的字符串。

主机使用任何一个选项设置上一个值。有关详细信息,请参阅下一部分中的重写配置

应用程序键(名称)Application Key (Name)

在主机构造期间调用 UseStartupConfigure 时,会自动设置 IWebHostEnvironment.ApplicationName 属性。该值设置为包含应用入口点的程序集的名称。要显式设置值,请使用 WebHostDefaults.ApplicationKey

在主机构造期间调用 UseStartupConfigure 时,会自动设置 IHostingEnvironment.ApplicationName 属性。该值设置为包含应用入口点的程序集的名称。要显式设置值,请使用 WebHostDefaults.ApplicationKey

密钥:applicationName类型:string 默认值:包含应用入口点的程序集的名称。设置使用UseSetting环境变量ASPNETCORE_APPLICATIONNAME

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseSetting(WebHostDefaults.ApplicationKey, "CustomApplicationName")

捕获启动错误Capture Startup Errors

此设置控制启动错误的捕获。

:captureStartupErrors类型:布尔型(true1默认:默认为 false,除非应用使用 Kestrel 在 IIS 后方运行,其中默认值是 true设置使用CaptureStartupErrors环境变量ASPNETCORE_CAPTURESTARTUPERRORS

false 时,启动期间出错导致主机退出。true 时,主机在启动期间捕获异常并尝试启动服务器。

  1. WebHost.CreateDefaultBuilder(args)
  2. .CaptureStartupErrors(true)

内容根Content root

此设置确定 ASP.NET Core 开始搜索内容文件。

:contentRoot类型:string 默认:默认为应用程序集所在的文件夹。设置使用UseContentRoot环境变量ASPNETCORE_CONTENTROOT

内容根目录也用作 Web 根目录的基路径。如果内容根路径不存在,主机将无法启动。

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseContentRoot("c:\\<content-root>")

有关详细信息,请参见:

详细错误Detailed Errors

确定是否应捕获详细错误。

:detailedErrors类型:布尔型(true1默认值:false设置使用UseSetting环境变量ASPNETCORE_DETAILEDERRORS

启用(或当环境设置为 Development )时,应用捕获详细的异常。

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseSetting(WebHostDefaults.DetailedErrorsKey, "true")

环境Environment

设置应用的环境。

:环境类型:string 默认:生产设置使用UseEnvironment环境变量ASPNETCORE_ENVIRONMENT

可将环境设置为任何值。框架定义的值包括 Development``StagingProduction值不区分大小写。默认情况下,从 ASPNETCORE_ENVIRONMENT 环境变量读取环境 。使用 Visual Studio 时,可在 launchSettings.json 文件中设置环境变量 。有关详细信息,请参阅 在 ASP.NET Core 中使用多个环境

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseEnvironment(EnvironmentName.Development)

承载启动程序集Hosting Startup Assemblies

设置应用的承载启动程序集。

:hostingStartupAssemblies类型:string 默认:空字符串设置使用UseSetting环境变量ASPNETCORE_HOSTINGSTARTUPASSEMBLIES

承载启动程序集的以分号分隔的字符串在启动时加载。

虽然配置值默认为空字符串,但是承载启动程序集会始终包含应用的程序集。提供承载启动程序集时,当应用在启动过程中生成其公用服务时将它们添加到应用的程序集加载。

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseSetting(WebHostDefaults.HostingStartupAssembliesKey, "assembly1;assembly2")

HTTPS 端口HTTPS Port

设置 HTTPS 重定向端口。用于强制实施 HTTPS

键:https_port;类型:字符串;默认值 :未设置默认值。设置使用 :UseSetting环境变量 :ASPNETCORE_HTTPS_PORT

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseSetting("https_port", "8080")

承载启动排除程序集Hosting Startup Exclude Assemblies

承载启动程序集的以分号分隔的字符串在启动时排除。

键 :hostingStartupExcludeAssemblies类型:string 默认:空字符串设置使用UseSetting环境变量ASPNETCORE_HOSTINGSTARTUPEXCLUDEASSEMBLIES

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseSetting(WebHostDefaults.HostingStartupExcludeAssembliesKey, "assembly1;assembly2")

首选承载 URLPrefer Hosting URLs

指示主机是否应该侦听使用 WebHostBuilder 配置的 URL,而不是使用 IServer 实现配置的 URL。

:preferHostingUrls类型:布尔型(true1默认值:true设置使用PreferHostingUrls环境变量ASPNETCORE_PREFERHOSTINGURLS

  1. WebHost.CreateDefaultBuilder(args)
  2. .PreferHostingUrls(false)

阻止承载启动Prevent Hosting Startup

阻止承载启动程序集自动加载,包括应用的程序集所配置的承载启动程序集。有关详细信息,请参阅 在 ASP.NET Core 中使用承载启动程序集

:preventHostingStartup类型:布尔型(true1默认值:false设置使用UseSetting环境变量ASPNETCORE_PREVENTHOSTINGSTARTUP

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseSetting(WebHostDefaults.PreventHostingStartupKey, "true")

服务器 URLServer URLs

指示 IP 地址或主机地址,其中包含服务器应针对请求侦听的端口和协议。

:urls类型:string 默认http://localhost:5000设置使用UseUrls环境变量ASPNETCORE_URLS

设置为服务器应响应的以分号分隔 (;) 的 URL 前缀列表。例如 http://localhost:123使用“”指示服务器应针对请求侦听的使用特定端口和协议(例如 http://:5000)的 IP 地址或主机名。协议(http://https://)必须包含每个 URL。不同的服务器支持的格式有所不同。

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseUrls("http://*:5000;http://localhost:5001;https://hostname:5002")

Kestrel 具有自己的终结点配置 API。有关详细信息,请参阅 ASP.NET Core 中的 Kestrel Web 服务器实现

关闭超时Shutdown Timeout

指定等待 Web 主机关闭的时长。

:shutdownTimeoutSeconds类型:int 默认:5设置使用UseShutdownTimeout环境变量ASPNETCORE_SHUTDOWNTIMEOUTSECONDS

虽然键使用 UseSetting 接受 int(例如 .UseSetting(WebHostDefaults.ShutdownTimeoutKey, "10")),但是 UseShutdownTimeout 扩展方法采用 TimeSpan

在超时时间段中,托管:

如果在所有托管服务停止之前就达到了超时时间,则会在应用关闭时会终止剩余的所有活动的服务。即使没有完成处理工作,服务也会停止。如果停止服务需要额外的时间,请增加超时时间。

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseShutdownTimeout(TimeSpan.FromSeconds(10))

启动程序集Startup Assembly

确定要在其中搜索 Startup 类的程序集。

:startupAssembly类型:string 默认:应用的程序集设置使用UseStartup环境变量ASPNETCORE_STARTUPASSEMBLY

按名称(string)或类型(TStartup)的程序集可以引用。如果调用多个 UseStartup 方法,优先选择最后一个方法。

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseStartup("StartupAssemblyName")
  1. WebHost.CreateDefaultBuilder(args)
  2. .UseStartup<TStartup>()

Web 根Web root

设置应用的静态资产的相对路径。

:webroot类型:string 默认:默认值为 wwwroot{content root}/wwwroot 的路径必须存在 。如果该路径不存在,则使用无操作文件提供程序。设置使用UseWebRoot环境变量ASPNETCORE_WEBROOT

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseWebRoot("public")

有关详细信息,请参见:

重写配置Override configuration

使用配置可以配置 Web 主机。在下面的示例中,主机配置是根据需要在 hostsettings.json 文件中指定。命令行参数可能会重写从 hostsettings.json 文件加载的任何配置。生成的配置(在 config 中)用于通过 UseConfiguration 配置主机。IWebHostBuilder 配置会添加到应用配置中,但反之不亦然—ConfigureAppConfiguration 不影响 IWebHostBuilder 配置。

先用 hostsettings.json config 重写 UseUrls 提供的配置,再用命令行参数 config:

  1. public class Program
  2. {
  3. public static void Main(string[] args)
  4. {
  5. CreateWebHostBuilder(args).Build().Run();
  6. }
  7. public static IWebHostBuilder CreateWebHostBuilder(string[] args)
  8. {
  9. var config = new ConfigurationBuilder()
  10. .SetBasePath(Directory.GetCurrentDirectory())
  11. .AddJsonFile("hostsettings.json", optional: true)
  12. .AddCommandLine(args)
  13. .Build();
  14. return WebHost.CreateDefaultBuilder(args)
  15. .UseUrls("http://*:5000")
  16. .UseConfiguration(config)
  17. .Configure(app =>
  18. {
  19. app.Run(context =>
  20. context.Response.WriteAsync("Hello, World!"));
  21. });
  22. }
  23. }

hostsettings.json :

  1. {
  2. urls: "http://*:5005"
  3. }

备注

UseConfiguration 只将所提供的 IConfiguration 中的密钥复制到主机生成器配置中。因此,JSON、INI 和 XML 设置文件的设置 reloadOnChange: true 没有任何影响。

若要指定在特定的 URL 上运行的主机,所需的值可以在执行 dotnet 运行时从命令提示符传入。命令行参数重写 hostsettings.json 文件中的 urls 值,且服务器侦听端口 8080:

  1. dotnet run --urls "http://*:8080"

管理主机Manage the host

运行

Run 方法启动 Web 应用并阻止调用线程,直到关闭主机:

  1. host.Run();

Start

通过调用 Start 方法以非阻止方式运行主机:

  1. using (host)
  2. {
  3. host.Start();
  4. Console.ReadLine();
  5. }

如果 URL 列表传递给 Start 方法,该列表侦听指定的 URL:

  1. var urls = new List<string>()
  2. {
  3. "http://*:5000",
  4. "http://localhost:5001"
  5. };
  6. var host = new WebHostBuilder()
  7. .UseKestrel()
  8. .UseStartup<Startup>()
  9. .Start(urls.ToArray());
  10. using (host)
  11. {
  12. Console.ReadLine();
  13. }

应用可以使用通过静态便捷方法预配置的 CreateDefaultBuilder 默认值初始化并启动新的主机。这些方法在没有控制台输出的情况下启动服务器,并使用 WaitForShutdown 等待中断(Ctrl-C/SIGINT 或 SIGTERM):

Start(RequestDelegate app)

RequestDelegate 开始:

  1. using (var host = WebHost.Start(app => app.Response.WriteAsync("Hello, World!")))
  2. {
  3. Console.WriteLine("Use Ctrl-C to shutdown the host...");
  4. host.WaitForShutdown();
  5. }

在浏览器中向 http://localhost:5000 发出请求,接收响应“Hello World!”WaitForShutdown 受到阻止,直到发出中断(Ctrl-C/SIGINT 或 SIGTERM)。应用显示 Console.WriteLine 消息并等待 keypress 退出。

Start(string url, RequestDelegate app)

从 URL 和 RequestDelegate 开始:

  1. using (var host = WebHost.Start("http://localhost:8080", app => app.Response.WriteAsync("Hello, World!")))
  2. {
  3. Console.WriteLine("Use Ctrl-C to shutdown the host...");
  4. host.WaitForShutdown();
  5. }

生成与 Start(RequestDelegate app) 相同的结果,除非应用在 http://localhost:8080 上响应 。

Start(Action<IRouteBuilder> routeBuilder)

使用 IRouteBuilder 的实例 (Microsoft.AspNetCore.Routing) 用于路由中间件:

  1. using (var host = WebHost.Start(router => router
  2. .MapGet("hello/{name}", (req, res, data) =>
  3. res.WriteAsync($"Hello, {data.Values["name"]}!"))
  4. .MapGet("buenosdias/{name}", (req, res, data) =>
  5. res.WriteAsync($"Buenos dias, {data.Values["name"]}!"))
  6. .MapGet("throw/{message?}", (req, res, data) =>
  7. throw new Exception((string)data.Values["message"] ?? "Uh oh!"))
  8. .MapGet("{greeting}/{name}", (req, res, data) =>
  9. res.WriteAsync($"{data.Values["greeting"]}, {data.Values["name"]}!"))
  10. .MapGet("", (req, res, data) => res.WriteAsync("Hello, World!"))))
  11. {
  12. Console.WriteLine("Use Ctrl-C to shutdown the host...");
  13. host.WaitForShutdown();
  14. }

该示例中使用以下浏览器请求:

请求响应
http://localhost:5000/hello/MartinHello, Martin!
http://localhost:5000/buenosdias/CatrinaBuenos dias, Catrina!
http://localhost:5000/throw/ooops!使用“ooops!”字符串引发异常
http://localhost:5000/throw使用“Uh oh!”字符串引发异常
http://localhost:5000/Sante/KevinSante, Kevin!
http://localhost:5000Hello World!

WaitForShutdown 受到阻止,直到发出中断(Ctrl-C/SIGINT 或 SIGTERM)。应用显示 Console.WriteLine 消息并等待 keypress 退出。

Start(string url, Action<IRouteBuilder> routeBuilder)

使用 URL 和 IRouteBuilder 实例:

  1. using (var host = WebHost.Start("http://localhost:8080", router => router
  2. .MapGet("hello/{name}", (req, res, data) =>
  3. res.WriteAsync($"Hello, {data.Values["name"]}!"))
  4. .MapGet("buenosdias/{name}", (req, res, data) =>
  5. res.WriteAsync($"Buenos dias, {data.Values["name"]}!"))
  6. .MapGet("throw/{message?}", (req, res, data) =>
  7. throw new Exception((string)data.Values["message"] ?? "Uh oh!"))
  8. .MapGet("{greeting}/{name}", (req, res, data) =>
  9. res.WriteAsync($"{data.Values["greeting"]}, {data.Values["name"]}!"))
  10. .MapGet("", (req, res, data) => res.WriteAsync("Hello, World!"))))
  11. {
  12. Console.WriteLine("Use Ctrl-C to shut down the host...");
  13. host.WaitForShutdown();
  14. }

生成与 Start(Action<IRouteBuilder> routeBuilder) 相同的结果,除非应用在 http://localhost:8080 上响应 。

StartWith(Action<IApplicationBuilder> app)

提供委托以配置 IApplicationBuilder

  1. using (var host = WebHost.StartWith(app =>
  2. app.Use(next =>
  3. {
  4. return async context =>
  5. {
  6. await context.Response.WriteAsync("Hello World!");
  7. };
  8. })))
  9. {
  10. Console.WriteLine("Use Ctrl-C to shut down the host...");
  11. host.WaitForShutdown();
  12. }

在浏览器中向 http://localhost:5000 发出请求,接收响应“Hello World!”WaitForShutdown 受到阻止,直到发出中断(Ctrl-C/SIGINT 或 SIGTERM)。应用显示 Console.WriteLine 消息并等待 keypress 退出。

StartWith(string url, Action<IApplicationBuilder> app)

提供 URL 和委托以配置 IApplicationBuilder

  1. using (var host = WebHost.StartWith("http://localhost:8080", app =>
  2. app.Use(next =>
  3. {
  4. return async context =>
  5. {
  6. await context.Response.WriteAsync("Hello World!");
  7. };
  8. })))
  9. {
  10. Console.WriteLine("Use Ctrl-C to shut down the host...");
  11. host.WaitForShutdown();
  12. }

生成与 StartWith(Action<IApplicationBuilder> app) 相同的结果,除非应用在 http://localhost:8080 上响应 。

IWebHostEnvironment 接口IWebHostEnvironment interface

IWebHostEnvironment 接口提供有关应用的 Web 托管环境的信息。使用构造函数注入获取 IWebHostEnvironment 以使用其属性和扩展方法:

  1. public class CustomFileReader
  2. {
  3. private readonly IWebHostEnvironment _env;
  4. public CustomFileReader(IWebHostEnvironment env)
  5. {
  6. _env = env;
  7. }
  8. public string ReadFile(string filePath)
  9. {
  10. var fileProvider = _env.WebRootFileProvider;
  11. // Process the file here
  12. }
  13. }

基于约定的方法可以用于在启动时基于环境配置应用。或者,将 IWebHostEnvironment 注入到 Startup 构造函数用于 ConfigureServices

  1. public class Startup
  2. {
  3. public Startup(IWebHostEnvironment env)
  4. {
  5. HostingEnvironment = env;
  6. }
  7. public IWebHostEnvironment HostingEnvironment { get; }
  8. public void ConfigureServices(IServiceCollection services)
  9. {
  10. if (HostingEnvironment.IsDevelopment())
  11. {
  12. // Development configuration
  13. }
  14. else
  15. {
  16. // Staging/Production configuration
  17. }
  18. var contentRootPath = HostingEnvironment.ContentRootPath;
  19. }
  20. }

备注

除了 IsDevelopment 扩展方法,IWebHostEnvironment 提供 IsStagingIsProductionIsEnvironment(string environmentName) 方法。有关详细信息,请参阅 在 ASP.NET Core 中使用多个环境

IWebHostEnvironment 服务还可以直接注入到 Configure 方法以设置处理管道:

  1. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  2. {
  3. if (env.IsDevelopment())
  4. {
  5. // In Development, use the Developer Exception Page
  6. app.UseDeveloperExceptionPage();
  7. }
  8. else
  9. {
  10. // In Staging/Production, route exceptions to /error
  11. app.UseExceptionHandler("/error");
  12. }
  13. var contentRootPath = env.ContentRootPath;
  14. }

创建自定义中间件时可以将 IWebHostEnvironment 注入 Invoke 方法:

  1. public async Task Invoke(HttpContext context, IWebHostEnvironment env)
  2. {
  3. if (env.IsDevelopment())
  4. {
  5. // Configure middleware for Development
  6. }
  7. else
  8. {
  9. // Configure middleware for Staging/Production
  10. }
  11. var contentRootPath = env.ContentRootPath;
  12. }

IHostingEnvironment 接口IHostingEnvironment interface

IHostingEnvironment 接口提供有关应用的 Web 承载环境的信息。使用构造函数注入获取 IHostingEnvironment 以使用其属性和扩展方法:

  1. public class CustomFileReader
  2. {
  3. private readonly IHostingEnvironment _env;
  4. public CustomFileReader(IHostingEnvironment env)
  5. {
  6. _env = env;
  7. }
  8. public string ReadFile(string filePath)
  9. {
  10. var fileProvider = _env.WebRootFileProvider;
  11. // Process the file here
  12. }
  13. }

基于约定的方法可以用于在启动时基于环境配置应用。或者,将 IHostingEnvironment 注入到 Startup 构造函数用于 ConfigureServices

  1. public class Startup
  2. {
  3. public Startup(IHostingEnvironment env)
  4. {
  5. HostingEnvironment = env;
  6. }
  7. public IHostingEnvironment HostingEnvironment { get; }
  8. public void ConfigureServices(IServiceCollection services)
  9. {
  10. if (HostingEnvironment.IsDevelopment())
  11. {
  12. // Development configuration
  13. }
  14. else
  15. {
  16. // Staging/Production configuration
  17. }
  18. var contentRootPath = HostingEnvironment.ContentRootPath;
  19. }
  20. }

备注

除了 IsDevelopment 扩展方法,IHostingEnvironment 提供 IsStagingIsProductionIsEnvironment(string environmentName) 方法。有关详细信息,请参阅 在 ASP.NET Core 中使用多个环境

IHostingEnvironment 服务还可以直接注入到 Configure 方法以设置处理管道:

  1. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  2. {
  3. if (env.IsDevelopment())
  4. {
  5. // In Development, use the Developer Exception Page
  6. app.UseDeveloperExceptionPage();
  7. }
  8. else
  9. {
  10. // In Staging/Production, route exceptions to /error
  11. app.UseExceptionHandler("/error");
  12. }
  13. var contentRootPath = env.ContentRootPath;
  14. }

创建自定义中间件时可以将 IHostingEnvironment 注入 Invoke 方法:

  1. public async Task Invoke(HttpContext context, IHostingEnvironment env)
  2. {
  3. if (env.IsDevelopment())
  4. {
  5. // Configure middleware for Development
  6. }
  7. else
  8. {
  9. // Configure middleware for Staging/Production
  10. }
  11. var contentRootPath = env.ContentRootPath;
  12. }

IHostApplicationLifetime 接口IHostApplicationLifetime interface

IHostApplicationLifetime 允许后启动和关闭活动。接口上的三个属性是用于注册 Action 方法(用于定义启动和关闭事件)的取消标记。

取消标记触发条件
ApplicationStarted主机已完全启动。
ApplicationStopped主机正在完成正常关闭。应处理所有请求。关闭受到阻止,直到完成此事件。
ApplicationStopping主机正在执行正常关闭。仍在处理请求。关闭受到阻止,直到完成此事件。
  1. public class Startup
  2. {
  3. public void Configure(IApplicationBuilder app, IHostApplicationLifetime appLifetime)
  4. {
  5. appLifetime.ApplicationStarted.Register(OnStarted);
  6. appLifetime.ApplicationStopping.Register(OnStopping);
  7. appLifetime.ApplicationStopped.Register(OnStopped);
  8. Console.CancelKeyPress += (sender, eventArgs) =>
  9. {
  10. appLifetime.StopApplication();
  11. // Don't terminate the process immediately, wait for the Main thread to exit gracefully.
  12. eventArgs.Cancel = true;
  13. };
  14. }
  15. private void OnStarted()
  16. {
  17. // Perform post-startup activities here
  18. }
  19. private void OnStopping()
  20. {
  21. // Perform on-stopping activities here
  22. }
  23. private void OnStopped()
  24. {
  25. // Perform post-stopped activities here
  26. }
  27. }

StopApplication 请求终止应用。以下类在调用类的 Shutdown 方法时使用 StopApplication 正常关闭应用:

  1. public class MyClass
  2. {
  3. private readonly IHostApplicationLifetime _appLifetime;
  4. public MyClass(IHostApplicationLifetime appLifetime)
  5. {
  6. _appLifetime = appLifetime;
  7. }
  8. public void Shutdown()
  9. {
  10. _appLifetime.StopApplication();
  11. }
  12. }

IApplicationLifetime 接口IApplicationLifetime interface

IApplicationLifetime 允许后启动和关闭活动。接口上的三个属性是用于注册 Action 方法(用于定义启动和关闭事件)的取消标记。

取消标记触发条件
ApplicationStarted主机已完全启动。
ApplicationStopped主机正在完成正常关闭。应处理所有请求。关闭受到阻止,直到完成此事件。
ApplicationStopping主机正在执行正常关闭。仍在处理请求。关闭受到阻止,直到完成此事件。
  1. public class Startup
  2. {
  3. public void Configure(IApplicationBuilder app, IApplicationLifetime appLifetime)
  4. {
  5. appLifetime.ApplicationStarted.Register(OnStarted);
  6. appLifetime.ApplicationStopping.Register(OnStopping);
  7. appLifetime.ApplicationStopped.Register(OnStopped);
  8. Console.CancelKeyPress += (sender, eventArgs) =>
  9. {
  10. appLifetime.StopApplication();
  11. // Don't terminate the process immediately, wait for the Main thread to exit gracefully.
  12. eventArgs.Cancel = true;
  13. };
  14. }
  15. private void OnStarted()
  16. {
  17. // Perform post-startup activities here
  18. }
  19. private void OnStopping()
  20. {
  21. // Perform on-stopping activities here
  22. }
  23. private void OnStopped()
  24. {
  25. // Perform post-stopped activities here
  26. }
  27. }

StopApplication 请求应用终止。以下类在调用类的 Shutdown 方法时使用 StopApplication 正常关闭应用:

  1. public class MyClass
  2. {
  3. private readonly IApplicationLifetime _appLifetime;
  4. public MyClass(IApplicationLifetime appLifetime)
  5. {
  6. _appLifetime = appLifetime;
  7. }
  8. public void Shutdown()
  9. {
  10. _appLifetime.StopApplication();
  11. }
  12. }

作用域验证Scope validation

如果应用环境为“开发”,则 CreateDefaultBuilderServiceProviderOptions.ValidateScopes 设为 true

若将 ValidateScopes 设为 true,默认服务提供程序会执行检查来验证以下内容:

  • 没有从根服务提供程序直接或间接解析到有作用域的服务。
  • 未将有作用域的服务直接或间接注入到单一实例。

调用 BuildServiceProvider 时,会创建根服务提供程序。在启动提供程序和应用时,根服务提供程序的生存期对应于应用/服务的生存期,并在关闭应用时释放。

有作用域的服务由创建它们的容器释放。如果作用域创建于根容器,则该服务的生存会有效地提升至单一实例,因为根容器只会在应用/服务关闭时将其释放。验证服务作用域,将在调用 BuildServiceProvider 时收集这类情况。

若要始终验证作用域(包括在生存环境中验证),请使用主机生成器上的 UseDefaultServiceProvider 配置 ServiceProviderOptions

  1. WebHost.CreateDefaultBuilder(args)
  2. .UseDefaultServiceProvider((context, options) => {
  3. options.ValidateScopes = true;
  4. })

其他资源Additional resources