ASP.NET 中不再有 UseMvc() 6、在哪里放置 Use() 调用?
No more UseMvc() in ASP.NET 6, where to put a Use() call?
我希望将不同端口(在我的例子中是 80 和 443)上的请求路由到不同的控制器。
我在 this answer 中看到了建议的技术,但代码在 .NET 6 下已过时。UseMvc()
不再用于 Blazor/ASP.NET 项目提供的代码模板。
这是来自新 Blazor WASM 项目的样板 Program.cs
代码:
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseWebAssemblyDebugging();
}
else
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseBlazorFrameworkFiles();
app.UseStaticFiles();
app.UseRouting();
app.MapRazorPages();
app.MapControllers();
app.MapFallbackToFile("index.html");
app.Run();
由于缺少 UseMvc()
调用,如链接的答案中所示,我将在此代码中的何处放置建议的 app.Use()
调用?
我最终将 Use
调用排在第一位,然后再进行其他操作:
app = builder.Build();
app.Use(async (context, next) => { ... });
这是。
我们在项目中使用它来配置一个经典的API:
app.UseEndpoints(endpoints => {
endpoints
.MapControllers()
.RequireAuthorization();
});
我们没有设置要使用的端口,但我认为该选项可用。我刚刚发现了一篇有趣的文章,可以帮助您:
https://andrewlock.net/how-to-automatically-choose-a-free-port-in-asp-net-core/
// 迪伦
我希望将不同端口(在我的例子中是 80 和 443)上的请求路由到不同的控制器。
我在 this answer 中看到了建议的技术,但代码在 .NET 6 下已过时。UseMvc()
不再用于 Blazor/ASP.NET 项目提供的代码模板。
这是来自新 Blazor WASM 项目的样板 Program.cs
代码:
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseWebAssemblyDebugging();
}
else
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseBlazorFrameworkFiles();
app.UseStaticFiles();
app.UseRouting();
app.MapRazorPages();
app.MapControllers();
app.MapFallbackToFile("index.html");
app.Run();
由于缺少 UseMvc()
调用,如链接的答案中所示,我将在此代码中的何处放置建议的 app.Use()
调用?
我最终将 Use
调用排在第一位,然后再进行其他操作:
app = builder.Build();
app.Use(async (context, next) => { ... });
这是
我们在项目中使用它来配置一个经典的API:
app.UseEndpoints(endpoints => {
endpoints
.MapControllers()
.RequireAuthorization();
});
我们没有设置要使用的端口,但我认为该选项可用。我刚刚发现了一篇有趣的文章,可以帮助您: https://andrewlock.net/how-to-automatically-choose-a-free-port-in-asp-net-core/
// 迪伦