SteelToe无法访问配置服务器中的数据

时间:2019-07-08 16:16:06

标签: c# configuration steeltoe

我已遵循SteelToe文档从我的配置服务器访问配置数据。 https://steeltoe.io/docs/steeltoe-configuration/#2-2-5-access-configuration-data

在我的TestController中,我在构造函数中设置了配置全局变量。但是,当我检查变量_config时,它基本上没有值null的值。

我不确定是否需要将值物理映射到CustomConfig类属性?因为在文档中未指定。

Startup.cs

public class CustomConfig { 
     public string Message { get; set; } 
}

public Startup(IConfiguration configuration, IHostingEnvironment env)
{

     var builder = new ConfigurationBuilder()
          .SetBasePath(env.ContentRootPath)
          .AddConfiguration(configuration)
          .AddCloudFoundry()
          .AddEnvironmentVariables();

     this.Configuration = builder.Build();
}

public IConfiguration Configuration { get; }

public void ConfigureServices(IServiceCollection services)
{
     services.Configure<CustomConfig>(Configuration.GetSection("spring:cloud:config:uri"));
}

Program.cs

public class Program
{
   public static void Main(string[] args)
   {
        CreateWebHostBuilder(args)
            .Build()
            .Run();
   }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .AddConfigServer()
            .UseStartup<Startup>();
    }
}

Controller.cs

public class TestController : ControllerBase
{
     private Startup.CustomConfig _config;     
     public TestController(IOptions<Startup.CustomConfig> configSettings)
     {
          _config = configSettings.value; // this is null
     }
}

2 个答案:

答案 0 :(得分:1)

这里发生的几种事情都对您有影响:

  1. 请勿在“启动”内部构建配置,该配置应在program.cs中处理
  2. 将配置绑定到自定义类时,属性名称需要匹配
  3. 应该在Configure
  4. 中配置选项

答案 1 :(得分:0)

看来解决我的问题的唯一方法如下:

CustomConfig类被扩展为具有构造函数,并且在该构造函数中,我从配置服务器获取uri的值

public class CustomConfig
{
    public string uri { get; set; }

    public CustomConfig(IConfiguration configuration)
    {
        uri = configuration.GetValue<string>("spring:cloud:config:uri");
    }
}

然后在我的控制器内部,按如下所示在构造函数中调用该类:

private Startup.CustomConfig _customConfig;

public TestController(Startup.CustomConfig customConfig)
{
    _customConfig = customConfig;
}

当我检查_customConfig变量时,它就是我的uri值。

我不会将其标记为答案,并将等待其他人的建议。