我正在尝试做的事情: 我正在尝试使用 .net core 2.1 mvc Web 应用程序设置 Azure 应用程序配置,并在 Azure 应用程序配置中使用哨兵密钥,目标是能够更改 azure 中的密钥,并且没有任何密钥将在我的应用程序中更新,直到哨兵值发生变化。理论上,这应该允许我安全地热交换配置。
我的问题是: 当我这样做时,没有 WatchAndReloadAll() 方法可用于观察 IWebHostBuilder 上的哨兵,并且替代的 Refresh() 方法似乎没有按照它们的状态刷新配置。
背景信息,以及我尝试过的方法: 上周我参加了 VS Live - San Diego,并观看了有关 Azure 应用程序配置的演示。我在尝试让应用程序刷新配置值时遇到了一些问题,因此我还参考了这个演示,描述了如何执行此操作。相关部分大约在 10 分钟后。但是,该方法在 IWebHostBuilder 上似乎不可用。
我正在参考的文档: 在官方文档中没有引用此方法,请参阅doc quickstart .net core和doc dynamic configuration .net core
我的环境: 使用从 Visual Studio Enterprise 2019 运行的 dot net core 2.1,以及 Microsoft.Azure.AppConfiguration.AspNetCore 2.0.0-preview-010060003-1250 的最新预览版 nuget 包
我的代码: 在演示中,他们通过 CreateWebHostBuilder(string[] args) 方法创建了一个 IWebHostBuilder,如下所示:
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
{
return WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration((hostingContext, config) =>
{
var settings = config.Build();
config.AddAzureAppConfiguration(options =>
{
options.Connect(settings["ConnectionStrings:AzureConfiguration"])
.Use(keyFilter: "TestApp:*")
.WatchAndReloadAll(key: "TestApp:Sentinel", pollInterval: TimeSpan.FromSeconds(5));
});
})
.UseStartup<Startup>();
}
我也尝试过这种方式,使用当前的文档:
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration((hostingContext, config) =>
{
var settings = config.Build();
config.AddAzureAppConfiguration(options =>
{
// fetch connection string from local config. Could use KeyVault, or Secrets as well.
options.Connect(settings["ConnectionStrings:AzureConfiguration"])
// filter configs so we are only searching against configs that meet this pattern
.Use(keyFilter: "WebApp:*")
.ConfigureRefresh(refreshOptions =>
{
// In theory, when this value changes, on the next refresh operation, the config will update all modified configs since it was last refreshed.
refreshOptions.Register("WebApp:Sentinel", true);
refreshOptions.Register("WebApp:Settings:BackgroundColor", false);
refreshOptions.Register("WebApp:Settings:FontColor", false);
refreshOptions.Register("WebApp:Settings:FontSize", false);
refreshOptions.Register("WebApp:Settings:Message", false);
});
});
})
.UseStartup<Startup>();
然后,在我的启动课上:
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.Configure<Settings>(Configuration.GetSection("WebApp:Settings"));
services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
options.CheckConsentNeeded = context => true;
options.MinimumSameSitePolicy = SameSiteMode.None;
});
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseAzureAppConfiguration();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
最后是我的设置配置模型:
public class Settings
{
public string BackgroundColor { get; set; }
public long FontSize { get; set; }
public string FontColor { get; set; }
public string Message { get; set; }
}
现在,在我的控制器中,我提取这些设置并将它们放入视图包中以显示在视图上。
public class HomeController : Controller
{
private readonly Settings _Settings;
public HomeController(IOptionsSnapshot<Settings> settings)
{
_Settings = settings.Value;
}
public IActionResult Index()
{
ViewData["BackgroundColor"] = _Settings.BackgroundColor;
ViewData["FontSize"] = _Settings.FontSize;
ViewData["FontColor"] = _Settings.FontColor;
ViewData["Message"] = _Settings.Message;
return View();
}
}
显示更改的简单视图:
<!DOCTYPE html>
<html lang="en">
<style>
body {
background-color: @ViewData["BackgroundColor"]
}
h1 {
color: @ViewData["FontColor"];
font-size: @ViewData["FontSize"];
}
</style>
<head>
<title>Index View</title>
</head>
<body>
<h1>@ViewData["Message"]</h1>
</body>
</html>
我可以让它第一次拉下配置,但是,刷新功能似乎无法以任何方式工作。
在最后一个示例中,我希望配置在哨兵设置为任何新值时更新,或者至少在更改值 30 秒后更新值。没有等待时间更新值,只有完全关闭并重新启动应用程序才会加载新配置。
更新:添加 app.UseAzureAppConfiguration(); 在启动时的配置方法中,并为配置在缓存上设置显式超时修复了刷新方法在固定时间后刷新,但哨兵功能仍然不起作用,刷新方法上的 updateAll 标志也不起作用。