英文:
Disable spring cloud config client
问题
我正在尝试禁用我的应用程序的spring-cloud-config-client。由于spring-cloud-config-client作为依赖项存在,因此在类路径上。它在每次应用程序启动时都会自动触发,正如预期的那样。我的用例是使用属性来控制这个自动触发。
我的尝试:
-
我在bootstrap.properties中提供了此属性
spring.cloud.config.enabled=false
,但仍然不起作用。 -
我已经查阅了https://stackoverflow.com/questions/27569168/cannot-disable-spring-cloud-config-via-spring-cloud-config-enabledfalse,但没有起作用。
-
另一个备选方案是使用
spring.cloud.config.overrideSystemProperties=false
和spring.cloud.config.overrideNone=true
,以使用系统/本地属性。
问题:
-
我的尝试是否可能实现?
-
我应该在哪里查找原因,找出为什么它不起作用?
谢谢!
英文:
I am trying to disable spring-cloud-config-client for my application. spring-cloud-config-client is present as dependency hence on classpath. It auto-triggers everytime as app starts as expected. My usecase is to control this auto-trigger with a property.
My attempt:
-
This property
spring.cloud.config.enabled=false
I have supplied in bootstrap.properties but still not working. -
I have gone through https://stackoverflow.com/questions/27569168/cannot-disable-spring-cloud-config-via-spring-cloud-config-enabledfalse but did not work
-
Other fallback option is to use
spring.cloud.config.overrideSystemProperties=false
andspring.cloud.config.overrideNone=true
inorder to use system/local properties.
Questions:
-
Is it possible to achieve what I am trying ?
-
Where should I look to find why its not working ?
Thanks!
专注分享java语言的经验与见解,让所有开发者获益!
评论