spring-cloud-commons
spring-cloud-commons copied to clipboard
Common classes used in different Spring Cloud implementations
We use the following code and expect that after refresh, someProperties.getProperties() will be changed, but it does not. only when refresh is triggered one more time, the change can be...
Ignoring the checkstyle auto-fixed whitespace changes, see: * spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.java - Capture management web server init event & wait for ApplicationReadyEvent before starting registration (to ensure that http & optional mgmt...
Well basically I have a gateway that contains 2 routes that use load balancer URIs: ``` route_1 -> Service_A (1 instance) route_2 -> Service_B (2 instances) ``` I noticed a...
Spring Cloud Version : 2020.0.4 Spring Boot version : 2.5.5 Discover Client Properties spring.application.name=load-balancer-client spring.cloud.loadbalancer.ribbon.enabled=false eureka.instance.prefer-ip-address=true server.port=8081 spring.cloud.loadbalancer.health-check.refetch-instances=true spring.cloud.loadbalancer.health-check.refetch-instances-interval=2s API App Properties spring.application.name=service-api management.endpoints.web.exposure.include=* eureka.instance.prefer-ip-address=true eureka.client.healthcheck.enabled=true My Client Load Balancer...
In my opinion the documentation of [Refresh Scope](https://docs.spring.io/spring-cloud-commons/docs/3.0.3/reference/html/#refresh-scope) is lacking some relevant details, listed below. #### How to trigger a refresh programmatically inside the application? The docs talk about the...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
Original https://github.com/spring-cloud/spring-cloud-kubernetes/issues/190 Code should live here since it is not specific to spring cloud. See [jhipster CloudConfigRefreshService](https://github.com/jhipster/jhipster-registry/blob/master/src/main/java/io/github/jhipster/registry/service/CloudConfigRefreshService.java) for example. Useful for spring cloud k8s. Related #604
after talking with a large financial services company that's building a SaaS offering, we discovered a few opportunities to better support multi-tenancy in a SaaS offering: - how do we...
We are looking to of move to Spring Cloud Load Balancer to replace Ribbon. We use Eureka for service discovery and registration. It looks like as of Spring Cloud Netflix...
In org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration class, displaying all the properties read from config server using the below log statement. I think we can stop displaying all the properties read from configuration file or...