禁用 Spring Cloud 配置客户端

huangapple 未分类评论46阅读模式
英文:

Disable spring cloud config client

问题

我正在尝试禁用我的应用程序的spring-cloud-config-client。由于spring-cloud-config-client作为依赖项存在,因此在类路径上。它在每次应用程序启动时都会自动触发,正如预期的那样。我的用例是使用属性来控制这个自动触发。

我的尝试:

  1. 我在bootstrap.properties中提供了此属性spring.cloud.config.enabled=false,但仍然不起作用。

  2. 我已经查阅了https://stackoverflow.com/questions/27569168/cannot-disable-spring-cloud-config-via-spring-cloud-config-enabledfalse,但没有起作用。

  3. 另一个备选方案是使用spring.cloud.config.overrideSystemProperties=falsespring.cloud.config.overrideNone=true,以使用系统/本地属性。

问题:

  1. 我的尝试是否可能实现?

  2. 我应该在哪里查找原因,找出为什么它不起作用?

谢谢!

英文:

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:

  1. This property spring.cloud.config.enabled=false I have supplied in bootstrap.properties but still not working.

  2. I have gone through https://stackoverflow.com/questions/27569168/cannot-disable-spring-cloud-config-via-spring-cloud-config-enabledfalse but did not work

  3. Other fallback option is to use spring.cloud.config.overrideSystemProperties=false and spring.cloud.config.overrideNone=true inorder to use system/local properties.

Questions:

  1. Is it possible to achieve what I am trying ?

  2. Where should I look to find why its not working ?

Thanks!

huangapple
  • 本文由 发表于 2020年4月5日 13:01:33
  • 转载请务必保留本文链接:https://java.coder-hub.com/61038280.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定