compile('org.springframework.cloud:spring-cloud-starter-netflix-ribbon') |
@LoadBalanced public RestTemplate restTemplate() { return new RestTemplate(); } |
public class ProductRemoteServiceImpl implements ProductRemoteService { //private static final String url = "http://localhost:8082/products/"; private static final String url = "http://product/products/"; private final RestTemplate restTemplate; } |
product: ribbon: listOfServers: localhost:8082,localhost:7777 MaxAutoRetries: 0 MaxAutoRetriesNextServer: 1 |