Questions tagged [spring-cloud-consul]

Spring Cloud Consul provides Consul integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms.

Spring Cloud Consul features:

  • Service Discovery: instances can be registered with the Consul agent and clients can discover the instances using Spring-managed beans
  • Supports Ribbon, the client side load-balancer via Spring Cloud Netflix
  • Supports Zuul, a dynamic router and filter via Spring Cloud Netflix
  • Distributed Configuration: using the Consul Key/Value store
  • Control Bus: Distributed control events using Consul Events

https://cloud.spring.io/spring-cloud-consul/

154 questions
0
votes
1 answer

Vagrant forwarded_port on sub-machine

I couldn't manage to publish a virtual machine's port this way: config.vm.define "n1" do |n1| n1.vm.hostname = "n1" n1.vm.network "private_network", ip: "172.20.20.10" n1.vm.network "forwarded_port", guest: 8500, host: 8080 end Access…
Thomas Escolan
  • 985
  • 1
  • 8
  • 17
0
votes
1 answer

Issues with Spring cloud consul config while starting a Groovy app through Spring cloud cli

I am Exploring Consul for discovery and config server. I have added the required dependencies and yml file is set up. When i try to start the server using spring cloud cli (Spring run .) I am getting the below error which i am unable to resolve. Any…
Muru
  • 19
  • 4
0
votes
2 answers

@RefreshScope annotated Bean registered through BeanDefinitionRegistryPostProcessor not getting refreshed on Cloud Config changes

I've a BeanDefinitionRegistryPostProcessor class that registers beans dynamically. Sometimes, the beans being registered have the Spring Cloud annotation @RefreshScope. However, when the cloud configuration Environment is changed, such beans are not…
0
votes
0 answers

Spring Cloud Consul: report not IP but DNS name to Consul Cluster

In my Spring Cloud Consul, I found out that program reports itself with IP address of the node, rather than DNS name. I need to report it using DNS name. How I could configure that?
onkami
  • 8,791
  • 17
  • 90
  • 176
1 2 3
10
11