我希望我的Go应用可以从Azure App Configuration中读取值。
我使用的Spring Boot应用程序
<groupId>com.microsoft.azure</groupId>
<artifactId>spring-cloud-starter-azure-appconfiguration-config</artifactId>
我想知道Go是否有类似的,易于使用的库?
答案 0 :(得分:1)
如我所见,有一种方法可以获取应用configuration
func GetAppConfiguration(ctx context.Context, name string) (createdConfig web.SiteConfigResource, err error) {
client, err := getWebAppsClient()
if err != nil {
return
}
createdConfig, err = client.GetConfiguration(ctx, config.GroupName(), name)
return
}
否则,您需要将其定义为环境变量,即在您的webconfig
中定义为
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<!-- For Go webapp, we always generate azureapp.exe in wwwroot -->
<httpPlatform processPath="D:\home\site\wwwroot\azureapp.exe" startupTimeLimit="60">
</httpPlatform>
</system.webServer>
</configuration>