让我先说明我没有直接使用Spring Cloud Config,它可以通过Spring Cloud Hystrix入门传递。
当仅使用@EnableHystrix
时,Spring Cloud也会尝试查找配置服务器,但由于我没有使用配置服务器,因此预计会失败。据我所知,该应用程序运行正常,但问题出在状态检查中。运行状况显示DOWN
,因为没有配置服务器。
浏览项目的来源,我希望spring.cloud.config.enabled=false
禁用此功能链,但这不是我所看到的。
升级到1.0.0.RC1
(添加此属性)并使用@EnableCircuitBreaker
后:
{
status: "DOWN",
discovery: {
status: "DOWN",
discoveryClient: {
status: "DOWN",
error: "org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.springframework.cloud.client.discovery.DiscoveryClient] is defined"
}
},
diskSpace: {
status: "UP",
free: 358479622144,
threshold: 10485760
},
hystrix: {
status: "UP"
},
configServer: {
status: "DOWN",
error: "org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http: //localhost: 8888/bootstrap/default/master":Connection refused: connect; nested exception is java.net.ConnectException: Connection refused: connect"
}
}
检查configprops端点后,似乎我的属性被覆盖了。请注意,父级已启用configClient。
parent: {
configClientProperties: {
prefix: "spring.cloud.config",
properties: {
password: null,
discovery: {
enabled: false,
serviceId: "CONFIGSERVER"
},
name: "bootstrap",
label: "master",
env: "default",
uri: "http://localhost:8888",
enabled: true,
failFast: false,
username: null
}
}
},
configClientProperties: {
prefix: "spring.cloud.config",
properties: {
password: null,
discovery: {
enabled: false,
serviceId: "CONFIGSERVER"
},
name: "bootstrap",
label: "master",
env: "default",
uri: "http://localhost:8888",
enabled: false,
failFast: false,
username: null
}
}
如果看起来我没有正确地做到这一点,任何方向都会受到赞赏。
答案 0 :(得分:16)
引导程序期间需要配置服务器,这就是父属性源的来源。看起来您需要做的就是将spring.cloud.config.enabled
属性移动到bootstrap.yml(或.properties)。
答案 1 :(得分:11)
我遇到了同样的问题,我想禁用配置服务器(因为到目前为止我们不需要它),但至少RC1的上述属性是不正确的。
spring.cloud.enabled
应该是:
spring.cloud.config.enabled
答案 2 :(得分:6)
spring.cloud.config.enabled=false
。 OR SPRING_CLOUD_CONFIG_ENABLED=false
或如果将参数传递给SpringApplication.run,则可以通过向应用添加参数来禁用配置服务器客户端:
public static void main(String[] args) throws Exception {
SpringApplication.run(YourApplication.class, args);
}
并通过以下方式启动应用:
java -jar yourapplication.jar --spring.cloud.config.enabled=false
答案 3 :(得分:4)
我尝试了上述所有更改,但配置客户端从未以某种方式停止过。
我能够通过在项目的pom.xml文件中使用以下排除来禁用它的唯一方法。
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-client</artifactId>
</exclusion>
</exclusions>
</dependency>
答案 4 :(得分:0)
关于发现服务跟进(看起来没有其他帖子),设置spring.cloud.config.discovery.enabled: false
对我有用,但只有在bootstrap中设置(yml / properties)并且我删除了{{1}我的@EnableDiscoveryClient
课程中的注释。我想这意味着不能对任何有时不使用发现的服务使用该注释。