我正在使用Azure Blob存储来存储照片。工作正常。为了连接到存储,我在appsettings.json
中添加了一个AzureStorageConfig:
"AzureStorageConfig": {
"AccountName": "<accountname>",
"ImageContainer": "<containername>",
"AccountKey": "<accountkey>"
}
我另外创建了一个类AzureStorageConfig
public class AzureStorageConfig
{
public string AccountKey { get; set; }
public string AccountName { get; set; }
public string BaseUrl { get; set; }
public Uri BlobEndpoint { get; set; }
public string ImageContainer { get; set; }
public Uri QueueEndpoint { get; set; }
public Uri TableEndpoint { get; set; }
}
并在Startup.cs中对其进行配置:
services.Configure<AzureStorageConfig>(Configuration.GetSection(nameof(AzureStorageConfig)));
因此可以通过依赖项注入来注入配置。
对于appsettings.development.json
,我想使用Azure存储模拟器。我找到了几个教程,但是所有教程都使用连接字符串而不是配置来连接到模拟器。
我尝试了在Microsoft页面上找到的数据:
"AzureStorageConfig": {
"AccountName": "devstoreaccount1",
"ImageContainer": "images",
"AccountKey": "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==",
"BlobEndpoint": "http://127.0.0.1:10000/devstoreaccount1",
"TableEndpoint": "http://127.0.0.1:10002/devstoreaccount1",
"QueueEndpoint": "http://127.0.0.1:10001/devstoreaccount1"
}
我这样初始化对象:
public class AzureStorageService
{
private readonly CloudBlobContainer _imageContainer;
private readonly AzureStorageConfig _storageConfig;
public AzureStorageService(IOptions<AzureStorageConfig> config)
{
_storageConfig = config.Value;
CloudStorageAccount storageAccount;
StorageCredentials storageCredentials = new StorageCredentials(_storageConfig.AccountName, _storageConfig.AccountKey);
if (_storageConfig.BlobEndpoint == null)
{
storageAccount = new CloudStorageAccount(storageCredentials, true);
}
else
{
storageAccount = new CloudStorageAccount(
storageCredentials,
_storageConfig.BlobEndpoint,
_storageConfig.QueueEndpoint,
_storageConfig.TableEndpoint,
null);
}
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
_imageContainer = blobClient.GetContainerReference(_storageConfig.ImageContainer);
_imageContainer.CreateIfNotExistsAsync().Wait();
}
}
我必须通过启动“ Microsoft Azure Compute Emulator”应用程序来手动启动模拟器。如何为自动化测试(以及运行这些测试的Azure Devops CI)以编程方式启动(并初始化)模拟器?
非常感谢。
答案 0 :(得分:1)
您应该将代码更改为使用连接字符串,该字符串与使用帐户名和密钥相同,但是当您使用仿真器时,只需将连接字符串更改为"UseDevelopmentStorage=true;"
,就会更加容易。
关于启动仿真器,您可以在startup.cs文件中检查环境的托管环境变量:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, IServiceProvider serviceProvider, ILoggerFactory loggerFactory)
{
if (env.IsDevelopment())
{
//Start the Emulator here by initiating a new process that calls the emulator.exe file
}
}
另一种解决方案是使用托管服务并对环境进行相同的检查,然后在StartAsync
中启动仿真器,然后在StopAsync
中停止仿真器
有关更多详细信息,请参见此链接Background tasks with hosted services in ASP.NET Core
答案 1 :(得分:0)
看来,您提供的用于访问asp.net核心中的appsetting.json文件的代码没有问题。您可以参考此article。
当您上传Blob时,如果始终遇到问题,则意味着该计算机存在,但没有服务在指定端口上监听,或者有防火墙阻止您。
如果偶尔发生-您使用了“有时”一词-并且重试成功,则可能是因为服务器具有完整的“积压”。