spring cloud config 客户端不从配置服务器加载配置

新手上路,请多包涵

我正在关注此链接: http ://cloud.spring.io/spring-cloud-config/spring-cloud-config.html#_client_side_usage

测试了好几遍都没有看到spring cloud客户端正在从云服务器加载配置,请帮忙看看是哪里出错了:

聚甲醛:

 <dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>

    </dependency>
</dependencies>

应用:

 @Configuration
@EnableAutoConfiguration
@RestController
public class ConfigclientApplication {

    @Value("${spring.cloud.config.uri}")
    String url;

    @Value("${production.host}")
    String host;


    @RequestMapping("/")
    public String home() {
        return "Host is  => " + this.host ;
    }

    public static void main(String[] args) {
        SpringApplication.run(ConfigclientApplication.class, args);
    }
}

bootstrap.properties: spring.cloud.config.uri=http://localhost:8888

  1. 配置服务器很好:http://localhost:8888/spirent/default
 {
  "name": "spirent",
  "profiles": [
    "default"
  ],
  "label": "master",
  "propertySources": [
    {
      "name": "classpath:/spirent.yml",
      "source": {
        "production.host": "server1",
        "production.port": 9999,
        "production.value1": 12345,
        "test.host": "server2.com",
        "test.port": 4444,
        "test.value": "hello123"
      }
    }
  ]
}

  1. 现在 http://localhost:8080/ 根本无法启动。

创建名称为“configclientApplication”的 bean 时出错 似乎 @Value 的自动注入找不到 production.host 环境值。

从配置服务器加载后,如何读取客户端中的配置?

谢谢你的帮助。

原文由 user3006967 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 758
2 个回答

正如 Deinum 暗示的那样,我会确保您将客户端配置为 spring-cloud-starter- parent 并为其提供一个版本。当您在依赖项中包含并记住 cloud 与 boot 是不同的项目时,spring cloud 提供的 Maven 插件将无法工作。将其更改为:

 <parent>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-parent</artifactId>
    <version>1.0.0.RELEASE</version>
    <relativePath /> <!-- lookup parent from repository -->
</parent>

其次,作为一门新学科(这里可能不是你的问题),我会在你的应用程序上使用新注释而不是 @Configuration 和 @EnableAutoConfiguration

 @SpringBootApplication

第三,仔细检查你的配置服务器上是否有@EnableConfigServer

第四,确保您客户端上的 bootstrap.properties 指定了您的 spring 应用程序名称:

 spring.application.name=spirent

最后,如果您使用了 spring-cloud-config 示例项目,则必须在 URI 中设置默认用户和安全密码:

 http://user:ddf4757e-0077-42e4-b2ad-2ae04340b08c@localhost:8888

否则,请尝试从位于此处的 spring-cloud-config 项目开始,以确保您的配置服务器设置正确:

 https://github.com/spring-cloud/spring-cloud-config

原文由 RubesMN 发布,翻译遵循 CC BY-SA 3.0 许可协议

如果您使用的是 2020.0.0 版本的 spring cloud,那么您需要在 maven 依赖项中添加此依赖项以启用引导程序,这在 2020.0.0 中默认是禁用的。

2020.0.0 中的重大变化

它对我有用。

         <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-bootstrap</artifactId>
        </dependency>

原文由 Vijay Patidar 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题