diff --git a/pom.xml b/pom.xml index 85bd28f8..58b5caac 100644 --- a/pom.xml +++ b/pom.xml @@ -72,6 +72,8 @@ + + true diff --git a/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java b/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java index 23485714..40c22fd4 100644 --- a/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java +++ b/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java @@ -7,14 +7,14 @@ import org.springframework.cloud.client.ServiceInstance; */ public interface LoadBalancerClient { /** - * Choose a {@see ServiceInstance} from the LoadBalancer for the specified service + * Choose a ServiceInstance from the LoadBalancer for the specified service * @param serviceId the service id to look up the LoadBalancer * @return a ServiceInstance that matches the serviceId */ public ServiceInstance choose(String serviceId); /** - * Choose a {@see ServiceInstance} from the LoadBalancer for the specified service + * Choose a ServiceInstance from the LoadBalancer for the specified service * @param serviceId the service id to look up the LoadBalancer * @param request allows implementations to execute pre and post actions such as incrementing metrics * @return the result of the LoadBalancerRequest callback on the selected ServiceInstance