I have this test project which I would like to migrate to more recent version:
@Configuration
public class LoadbalancerConfig extends RibbonLoadBalancerClient {
public LoadbalancerConfig(SpringClientFactory clientFactory) {
super(clientFactory);
}
}
Full code example: https://github.com/rcbandit111/Generic_SO_POC/blob/master/src/main/java/org/merchant/database/service/sql/LoadbalancerConfig.java
Do you know how I can migrate this code to latest load balancer version?
I think examining the
RibbonAutoConfiguration
class gives you a good hint of how you should configure things. First remove@Configuration
fromLoadbalancerConfig
, I also renamedLoadbalancerConfig
toCustomLoadbalancer
to prevent confusion.add the following dependency to your gradle
com.netflix.ribbon:ribbon:2.7.18
then add a configuration class like:
If you want to use Spring cloud load balancer instead of above configuration add
spring-cloud-starter-loadbalancer
dependency to yourgradle.build
and for configuration you only need this bean:This
RestTemplate
pretty works identical to standardRestTemplate
class, except instead of using physical location of the service, you need to build the URL using Eureka service ID.Here is an example of how could you possibly use it in your code
Also if you wish to use reactive client the process is the same first define the bean:
and then inject and use it when you need:
Also you can check documentation for additional information: documentation