spring-cloud-commons
spring-cloud-commons copied to clipboard
Common classes used in different Spring Cloud implementations
```java @ConfigurationProperties(prefix = "book") @Component public class BootConfig { private String author; private String category; public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author;...
Hi! I'm trying to integrate RefreshScope in my project. The problem is that `@ConditionalOnBean` condition doesn't match bean, annotated with `@RefreshScope`. It works fine with Spring Boot 2.1.4.RELEASE, but doesn't...
**Is your feature request related to a problem? Please describe.** When an "old-style" reload finds some changes in configmap o secret it puts some info into the log like: ```...
**Describe the bug** Hi folks, I have a class name set in spring.cloud.refresh.never-refreshable to be ignored for refresh. This however doesn't work because Spring adds some EnhancerBySpringCGLIB to the class...
# Description In a multi-AZ environment, a loadbalancer looks at `ServiceInstance`s of the primary zone first, but when the instances of that are not connected correctly, then it looks at...
- Use ImportCandidates#load instead of SpringFactoriesLoader#loadFactoryNames - Use EnvironmentPostProcessorsFactory#getEnvironmentPostProcessors instead of SpringFactoriesLoader#loadFactoryNames > There is currently no better way to use SpringFactoriesLoader#loadFactoryNames in org.springframework.cloud.commons.util.SpringFactoryImportSelector#selectImports. > This may not necessarily produce...
**Is your feature request related to a problem? Please describe.** Spring Cloud LoadBalancer now only supports expired caching, that is, after a period of time, the cache item will become...
**Is your feature request related to a problem? Please describe.** I'm integrating Spring Cloud LoadBalancer with a Consul Discovery Client and I want to include own Consul's instance tags in...
Optimizing ContextRefresher#extract to reduce array copy behaviors.
**Is your feature request related to a problem? Please describe.** When I update a particular configuration in Nacos in a production environment with high concurrency, some servers will remain unresponsive...