spring-cloud-commons
spring-cloud-commons copied to clipboard
Common classes used in different Spring Cloud implementations
As the title. I use Spring Cloud LoadBalancer, but When I call `/actuator/caches` , It just shows json like below: ```json { "cacheManagers": {} } ``` **I think It Should...
## Version: - spring boot: 3.2.2 - spring cloud: 2023.0.0 - spring cloud commons: 4.1.1 ## description: when startup, have warn messages : ``` 2024-02-21 18:36:11.084 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker -...
**Is your feature request related to a problem? Please describe.** I'm building an application with Spring Cloud 2023 using Feign and Resilience4j. In the [CircuitBreaker class](https://github.com/spring-cloud/spring-cloud-commons/blob/main/spring-cloud-commons/src/main/java/org/springframework/cloud/client/circuitbreaker/CircuitBreaker.java), methods that do not...
Attached my spring boot 3 application with rabbitMQ and micrometer tracing, its a spring web application. [Dummy.zip](https://github.com/spring-cloud/spring-cloud-commons/files/14416345/Dummy.zip) Here traceID / spanID is not propagating to other threads for the events...
Fixes gh-1302.
Version: 4.0.4 ### Problem When `spring.cloud.loadbalancer.stats.micrometer.enabled: true` using WebClient with loadbalancing can lead to generation of huge number of metrics when path contains params, e.g. `/test/{somePerCallId}/...` what eventually with high...
**Describe the bug** I am tryin to use spring-cloud-starter-vault-config(4.0.1) to read secret from vault. I am connect to datasource for a progress database which works perfectly before adding spring-cloud-starter-vault-config dependency....
**Describe the bug** If we use placeholders with comma in spring.profiles.include (and spring.profiles.active) property like this: `spring.profiles.include=${ENVIRONMENT_PROFILE_NAME:some_profile1,some_profile2}` vanilla spring boot application works fine:  but spring cloud application (with consul...
Was referred from https://github.com/spring-projects/spring-boot/issues/34433 When running an AOT build of an application with a `@RefreshScope` bean that has an aspect applied to it, the application fails during runtime startup with...
Due to Java type erasure, currently I have to manually determine the type of the event's config when listening to this event: ```kotlin @Component class EurekaInstanceConfigPostProcessor( private val eureka: EurekaRegistration,...