我正在关注此链接: 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
{
"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"
}
}
]
}
- 现在 http://localhost:8080/ 根本无法启动。
创建名称为“configclientApplication”的 bean 时出错 似乎 @Value 的自动注入找不到 production.host 环境值。
从配置服务器加载后,如何读取客户端中的配置?
谢谢你的帮助。
原文由 user3006967 发布,翻译遵循 CC BY-SA 4.0 许可协议
正如 Deinum 暗示的那样,我会确保您将客户端配置为 spring-cloud-starter- parent 并为其提供一个版本。当您在依赖项中包含并记住 cloud 与 boot 是不同的项目时,spring cloud 提供的 Maven 插件将无法工作。将其更改为:
其次,作为一门新学科(这里可能不是你的问题),我会在你的应用程序上使用新注释而不是 @Configuration 和 @EnableAutoConfiguration
第三,仔细检查你的配置服务器上是否有@EnableConfigServer
第四,确保您客户端上的 bootstrap.properties 指定了您的 spring 应用程序名称:
最后,如果您使用了 spring-cloud-config 示例项目,则必须在 URI 中设置默认用户和安全密码:
否则,请尝试从位于此处的 spring-cloud-config 项目开始,以确保您的配置服务器设置正确: