From 2250c836a42e31ff63775381542b8d40a4dedf93 Mon Sep 17 00:00:00 2001 From: Biju Kunjummen Date: Fri, 21 Jul 2017 11:40:08 -0700 Subject: [PATCH 1/2] Remove dependence on lombok (#231) --- spring-cloud-commons/pom.xml | 6 -- .../cloud/client/DefaultServiceInstance.java | 66 +++++++++++++++-- .../client/actuator/FeaturesEndpoint.java | 55 ++++++++++++-- .../cloud/client/actuator/NamedFeature.java | 30 +++++++- .../DiscoveryClientHealthIndicator.java | 8 ++- .../NoopDiscoveryClientAutoConfiguration.java | 9 +-- .../CloudHypermediaAutoConfiguration.java | 29 ++++++-- .../client/hypermedia/DiscoveredResource.java | 42 ++++++++--- .../DynamicServiceInstanceProvider.java | 16 +++-- .../hypermedia/RemoteResourceRefresher.java | 17 +++-- .../StaticServiceInstanceProvider.java | 15 ++-- .../cloud/commons/util/InetUtils.java | 34 +++++++-- .../commons/util/InetUtilsProperties.java | 71 ++++++++++++++++++- .../util/SpringFactoryImportSelector.java | 8 ++- ...actLoadBalancerAutoConfigurationTests.java | 34 ++++++--- ...yncLoadBalancerAutoConfigurationTests.java | 31 ++++++-- 16 files changed, 388 insertions(+), 83 deletions(-) diff --git a/spring-cloud-commons/pom.xml b/spring-cloud-commons/pom.xml index 93c07f14..5af3d5a7 100644 --- a/spring-cloud-commons/pom.xml +++ b/spring-cloud-commons/pom.xml @@ -96,12 +96,6 @@ json-path true - - org.projectlombok - lombok - compile - true - org.springframework.boot spring-boot-starter-test diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java index 566a1228..d7e710c2 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2013-2015 the original author or authors. + * Copyright 2013-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,20 +16,17 @@ package org.springframework.cloud.client; + import java.net.URI; import java.util.LinkedHashMap; import java.util.Map; - -import lombok.Data; -import lombok.RequiredArgsConstructor; +import java.util.Objects; /** * Default implementation of {@link ServiceInstance}. * * @author Spencer Gibb */ -@Data -@RequiredArgsConstructor public class DefaultServiceInstance implements ServiceInstance { private final String serviceId; @@ -42,6 +39,15 @@ public class DefaultServiceInstance implements ServiceInstance { private final Map metadata; + public DefaultServiceInstance(String serviceId, String host, int port, boolean secure, + Map metadata) { + this.serviceId = serviceId; + this.host = host; + this.port = port; + this.secure = secure; + this.metadata = metadata; + } + public DefaultServiceInstance(String serviceId, String host, int port, boolean secure) { this(serviceId, host, port, secure, new LinkedHashMap()); @@ -68,4 +74,52 @@ public class DefaultServiceInstance implements ServiceInstance { instance.getPort()); return URI.create(uri); } + + @Override + public String getServiceId() { + return serviceId; + } + + @Override + public String getHost() { + return host; + } + + @Override + public int getPort() { + return port; + } + + @Override + public boolean isSecure() { + return secure; + } + + @Override + public String toString() { + return "DefaultServiceInstance{" + + "serviceId='" + serviceId + '\'' + + ", host='" + host + '\'' + + ", port=" + port + + ", secure=" + secure + + ", metadata=" + metadata + + '}'; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + DefaultServiceInstance that = (DefaultServiceInstance) o; + return port == that.port && + secure == that.secure && + Objects.equals(serviceId, that.serviceId) && + Objects.equals(host, that.host) && + Objects.equals(metadata, that.metadata); + } + + @Override + public int hashCode() { + return Objects.hash(serviceId, host, port, secure, metadata); + } } diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/FeaturesEndpoint.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/FeaturesEndpoint.java index 7e6e19c4..319e27c6 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/FeaturesEndpoint.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/FeaturesEndpoint.java @@ -1,3 +1,19 @@ +/* + * Copyright 2017 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.springframework.cloud.client.actuator; import java.util.ArrayList; @@ -10,7 +26,6 @@ import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; -import lombok.Value; /** * @author Spencer Gibb @@ -75,17 +90,47 @@ public class FeaturesEndpoint extends AbstractEndpoint enabled = new ArrayList<>(); - List disabled = new ArrayList<>(); + final List enabled = new ArrayList<>(); + final List disabled = new ArrayList<>(); + + public List getEnabled() { + return enabled; + } + + public List getDisabled() { + return disabled; + } } - @Value + class Feature { final String type; final String name; final String version; final String vendor; + + public Feature(String type, String name, String version, String vendor) { + this.type = type; + this.name = name; + this.version = version; + this.vendor = vendor; + } + + public String getType() { + return type; + } + + public String getName() { + return name; + } + + public String getVersion() { + return version; + } + + public String getVendor() { + return vendor; + } } } diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/NamedFeature.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/NamedFeature.java index f5062052..572263e0 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/NamedFeature.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/NamedFeature.java @@ -1,12 +1,38 @@ +/* + * Copyright 2017 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.springframework.cloud.client.actuator; -import lombok.Value; /** * @author Spencer Gibb */ -@Value public class NamedFeature { private final String name; private final Class type; + + public NamedFeature(String name, Class type) { + this.name = name; + this.type = type; + } + + public String getName() { + return name; + } + + public Class getType() { + return type; + } } diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.java index 75ec4a2b..8f86a386 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.java @@ -1,5 +1,5 @@ /* - * Copyright 2013-2015 the original author or authors. + * Copyright 2013-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,6 +19,8 @@ package org.springframework.cloud.client.discovery.health; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.springframework.boot.actuate.health.Health; import org.springframework.boot.actuate.health.Status; import org.springframework.cloud.client.discovery.DiscoveryClient; @@ -26,12 +28,10 @@ import org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent; import org.springframework.context.ApplicationListener; import org.springframework.core.Ordered; -import lombok.extern.apachecommons.CommonsLog; /** * @author Spencer Gibb */ -@CommonsLog public class DiscoveryClientHealthIndicator implements DiscoveryHealthIndicator, Ordered, ApplicationListener> { @@ -42,6 +42,8 @@ public class DiscoveryClientHealthIndicator implements DiscoveryHealthIndicator, private final DiscoveryClient discoveryClient; private final DiscoveryClientHealthIndicatorProperties properties; + private final Log log = LogFactory.getLog(DiscoveryClientHealthIndicator.class); + @Deprecated public DiscoveryClientHealthIndicator(DiscoveryClient discoveryClient) { this(discoveryClient, new DiscoveryClientHealthIndicatorProperties()); diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.java index e185b42b..c356d87c 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2013-2014 the original author or authors. + * Copyright 2013-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,6 +21,8 @@ import java.net.UnknownHostException; import javax.annotation.PostConstruct; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; @@ -38,8 +40,6 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.event.ContextRefreshedEvent; import org.springframework.core.env.Environment; -import lombok.extern.apachecommons.CommonsLog; - /** * * @deprecated Use @@ -50,7 +50,6 @@ import lombok.extern.apachecommons.CommonsLog; @Configuration @EnableConfigurationProperties @ConditionalOnMissingBean(DiscoveryClient.class) -@CommonsLog @Deprecated public class NoopDiscoveryClientAutoConfiguration implements ApplicationListener { @@ -69,6 +68,8 @@ public class NoopDiscoveryClientAutoConfiguration private DefaultServiceInstance serviceInstance; + private final Log log = LogFactory.getLog(NoopDiscoveryClientAutoConfiguration.class); + @PostConstruct public void init() { String host = "localhost"; diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.java index a30f4f0c..8f31161e 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 the original author or authors. + * Copyright 2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,7 +15,6 @@ */ package org.springframework.cloud.client.hypermedia; -import lombok.Data; import java.util.Collections; import java.util.List; @@ -50,17 +49,39 @@ public class CloudHypermediaAutoConfiguration { properties.getRefresh().getInitialDelay()); } - @Data @ConfigurationProperties(prefix = "spring.cloud.hypermedia") public static class CloudHypermediaProperties { private Refresh refresh = new Refresh(); - @Data + public Refresh getRefresh() { + return refresh; + } + + public void setRefresh(Refresh refresh) { + this.refresh = refresh; + } + public static class Refresh { private int fixedDelay = 5000; private int initialDelay = 10000; + + public int getFixedDelay() { + return fixedDelay; + } + + public void setFixedDelay(int fixedDelay) { + this.fixedDelay = fixedDelay; + } + + public int getInitialDelay() { + return initialDelay; + } + + public void setInitialDelay(int initialDelay) { + this.initialDelay = initialDelay; + } } } } diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DiscoveredResource.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DiscoveredResource.java index 6a9737a1..cae5a18e 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DiscoveredResource.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DiscoveredResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 the original author or authors. + * Copyright 2015-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,12 +15,10 @@ */ package org.springframework.cloud.client.hypermedia; -import lombok.Getter; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; - import java.net.URI; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.cloud.client.ServiceInstance; import org.springframework.hateoas.Link; import org.springframework.hateoas.MediaTypes; @@ -35,15 +33,22 @@ import org.springframework.web.client.RestTemplate; * * @author Oliver Gierke */ -@Slf4j -@RequiredArgsConstructor public class DiscoveredResource implements RemoteResource { private final ServiceInstanceProvider provider; private final TraversalDefinition traversal; + private RestOperations restOperations = new RestTemplate(); - private @Getter Link link = null; + private Link link = null; + + private final Logger log = LoggerFactory.getLogger(DiscoveredResource.class); + + + public DiscoveredResource(ServiceInstanceProvider provider, TraversalDefinition traversal) { + this.provider = provider; + this.traversal = traversal; + } /** * Configures the {@link RestOperations} to use to execute the traversal and verifying HEAD calls. @@ -54,6 +59,27 @@ public class DiscoveredResource implements RemoteResource { this.restOperations = restOperations == null ? new RestTemplate() : restOperations; } + public ServiceInstanceProvider getProvider() { + return provider; + } + + public TraversalDefinition getTraversal() { + return traversal; + } + + public RestOperations getRestOperations() { + return restOperations; + } + + @Override + public Link getLink() { + return link; + } + + public void setLink(Link link) { + this.link = link; + } + /** * Verifies the link to the current */ diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.java index 7f33015a..fa32769c 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 the original author or authors. + * Copyright 2015-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,8 +15,6 @@ */ package org.springframework.cloud.client.hypermedia; -import lombok.RequiredArgsConstructor; - import java.util.List; import org.springframework.cloud.client.ServiceInstance; @@ -28,16 +26,20 @@ import org.springframework.cloud.client.discovery.DiscoveryClient; * * @author Oliver Gierke */ -@RequiredArgsConstructor public class DynamicServiceInstanceProvider implements ServiceInstanceProvider { private final DiscoveryClient client; private final String serviceName; + public DynamicServiceInstanceProvider(DiscoveryClient client, String serviceName) { + this.client = client; + this.serviceName = serviceName; + } + /* - * (non-Javadoc) - * @see example.customers.integration.ServiceInstanceProvider#getServiceInstance() - */ + * (non-Javadoc) + * @see example.customers.integration.ServiceInstanceProvider#getServiceInstance() + */ @Override public ServiceInstance getServiceInstance() { diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.java index d3effdad..f167d57a 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 the original author or authors. + * Copyright 2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,8 +15,6 @@ */ package org.springframework.cloud.client.hypermedia; -import lombok.RequiredArgsConstructor; - import java.util.List; import org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar; @@ -29,16 +27,21 @@ import org.springframework.scheduling.config.ScheduledTaskRegistrar; * * @author Oliver Gierke */ -@RequiredArgsConstructor public class RemoteResourceRefresher extends ContextLifecycleScheduledTaskRegistrar { private final List discoveredResources; private final int fixedDelay, initialDelay; + public RemoteResourceRefresher(List discoveredResources, int fixedDelay, int initialDelay) { + this.discoveredResources = discoveredResources; + this.fixedDelay = fixedDelay; + this.initialDelay = initialDelay; + } + /* - * (non-Javadoc) - * @see org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar#afterPropertiesSet() - */ + * (non-Javadoc) + * @see org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar#afterPropertiesSet() + */ @Override public void afterPropertiesSet() { diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.java index dfebb846..1dc7715a 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 the original author or authors. + * Copyright 2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,8 +15,6 @@ */ package org.springframework.cloud.client.hypermedia; -import lombok.RequiredArgsConstructor; - import org.springframework.cloud.client.ServiceInstance; /** @@ -24,15 +22,18 @@ import org.springframework.cloud.client.ServiceInstance; * * @author Oliver Gierke */ -@RequiredArgsConstructor public class StaticServiceInstanceProvider implements ServiceInstanceProvider { private final ServiceInstance instance; + public StaticServiceInstanceProvider(ServiceInstance instance) { + this.instance = instance; + } + /* - * (non-Javadoc) - * @see example.customers.integration.ServiceInstanceProvider#getServiceInstance() - */ + * (non-Javadoc) + * @see example.customers.integration.ServiceInstanceProvider#getServiceInstance() + */ @Override public ServiceInstance getServiceInstance() { return instance; diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtils.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtils.java index e8de986f..34f31a30 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtils.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtils.java @@ -31,20 +31,21 @@ import java.util.concurrent.Future; import java.util.concurrent.ThreadFactory; import java.util.concurrent.TimeUnit; -import lombok.Data; -import lombok.extern.apachecommons.CommonsLog; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; /** * @author Spencer Gibb */ -@CommonsLog public class InetUtils implements Closeable { // TODO: maybe shutdown the thread pool if it isn't being used? private final ExecutorService executorService; private final InetUtilsProperties properties; private static final InetUtils instance = new InetUtils(new InetUtilsProperties()); - + + private final Log log = LogFactory.getLog(InetUtils.class); + public InetUtils(final InetUtilsProperties properties) { this.properties = properties; this.executorService = Executors @@ -200,7 +201,6 @@ public class InetUtils implements Closeable { return new HostInfo(host).getIpAddressAsInt(); } - @Data public static class HostInfo { public boolean override; private String ipAddress; @@ -227,6 +227,30 @@ public class InetUtils implements Closeable { } return ByteBuffer.wrap(inetAddress.getAddress()).getInt(); } + + public boolean isOverride() { + return override; + } + + public void setOverride(boolean override) { + this.override = override; + } + + public String getIpAddress() { + return ipAddress; + } + + public void setIpAddress(String ipAddress) { + this.ipAddress = ipAddress; + } + + public String getHostname() { + return hostname; + } + + public void setHostname(String hostname) { + this.hostname = hostname; + } } } diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtilsProperties.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtilsProperties.java index 7fae030f..d4ec4613 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtilsProperties.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtilsProperties.java @@ -1,3 +1,19 @@ +/* + * Copyright 2017 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.springframework.cloud.commons.util; import java.net.InetAddress; @@ -7,12 +23,9 @@ import java.util.List; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties; -import lombok.Data; - /** * @author Spencer Gibb */ -@Data @ConfigurationProperties(InetUtilsProperties.PREFIX) public class InetUtilsProperties { public static final String PREFIX = "spring.cloud.inetutils"; @@ -47,4 +60,56 @@ public class InetUtilsProperties { * List of Java regex expressions for network addresses that will be preferred. */ private List preferredNetworks = new ArrayList<>(); + + public static String getPREFIX() { + return PREFIX; + } + + public String getDefaultHostname() { + return defaultHostname; + } + + public void setDefaultHostname(String defaultHostname) { + this.defaultHostname = defaultHostname; + } + + public String getDefaultIpAddress() { + return defaultIpAddress; + } + + public void setDefaultIpAddress(String defaultIpAddress) { + this.defaultIpAddress = defaultIpAddress; + } + + public int getTimeoutSeconds() { + return timeoutSeconds; + } + + public void setTimeoutSeconds(int timeoutSeconds) { + this.timeoutSeconds = timeoutSeconds; + } + + public List getIgnoredInterfaces() { + return ignoredInterfaces; + } + + public void setIgnoredInterfaces(List ignoredInterfaces) { + this.ignoredInterfaces = ignoredInterfaces; + } + + public boolean isUseOnlySiteLocalInterfaces() { + return useOnlySiteLocalInterfaces; + } + + public void setUseOnlySiteLocalInterfaces(boolean useOnlySiteLocalInterfaces) { + this.useOnlySiteLocalInterfaces = useOnlySiteLocalInterfaces; + } + + public List getPreferredNetworks() { + return preferredNetworks; + } + + public void setPreferredNetworks(List preferredNetworks) { + this.preferredNetworks = preferredNetworks; + } } diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/SpringFactoryImportSelector.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/SpringFactoryImportSelector.java index 3e72e5f9..ccc8d00e 100644 --- a/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/SpringFactoryImportSelector.java +++ b/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/SpringFactoryImportSelector.java @@ -1,5 +1,5 @@ /* - * Copyright 2013-2015 the original author or authors. + * Copyright 2013-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,6 +20,8 @@ import java.util.ArrayList; import java.util.LinkedHashSet; import java.util.List; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.springframework.beans.factory.BeanClassLoaderAware; import org.springframework.context.EnvironmentAware; import org.springframework.context.annotation.DeferredImportSelector; @@ -30,7 +32,6 @@ import org.springframework.core.io.support.SpringFactoriesLoader; import org.springframework.core.type.AnnotationMetadata; import org.springframework.util.Assert; -import lombok.extern.apachecommons.CommonsLog; /** * Selects configurations to load defined by the generic type T. Loads implementations @@ -39,7 +40,6 @@ import lombok.extern.apachecommons.CommonsLog; * @author Spencer Gibb * @author Dave Syer */ -@CommonsLog public abstract class SpringFactoryImportSelector implements DeferredImportSelector, BeanClassLoaderAware, EnvironmentAware { @@ -49,6 +49,8 @@ public abstract class SpringFactoryImportSelector private Environment environment; + private final Log log = LogFactory.getLog(SpringFactoryImportSelector.class); + @SuppressWarnings("unchecked") protected SpringFactoryImportSelector() { this.annotationClass = (Class) GenericTypeResolver diff --git a/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.java b/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.java index 52f5a290..9e8184a9 100644 --- a/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.java +++ b/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.java @@ -1,20 +1,33 @@ +/* + * Copyright 2017 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.springframework.cloud.client.loadbalancer; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.hasSize; -import static org.hamcrest.Matchers.instanceOf; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.notNullValue; import java.io.IOException; import java.net.URI; import java.util.Collection; -import java.util.List; import java.util.Map; import java.util.Random; -import lombok.SneakyThrows; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; @@ -25,7 +38,6 @@ import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; -import org.springframework.http.client.ClientHttpRequestInterceptor; import org.springframework.web.client.RestTemplate; /** @@ -138,15 +150,21 @@ public abstract class AbstractLoadBalancerAutoConfigurationTests { } @Override - @SneakyThrows public T execute(String serviceId, LoadBalancerRequest request) { - return request.apply(choose(serviceId)); + try { + return request.apply(choose(serviceId)); + } catch (Exception e) { + throw new RuntimeException(e); + } } @Override - @SneakyThrows public T execute(String serviceId, ServiceInstance serviceInstance, LoadBalancerRequest request) throws IOException { - return request.apply(choose(serviceId)); + try { + return request.apply(choose(serviceId)); + } catch (Exception e) { + throw new RuntimeException(e); + } } @Override diff --git a/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.java b/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.java index 1d66d9ed..e270f5ee 100644 --- a/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.java +++ b/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.java @@ -1,6 +1,21 @@ +/* + * Copyright 2017 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.springframework.cloud.client.loadbalancer; -import lombok.SneakyThrows; import org.hamcrest.MatcherAssert; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; @@ -140,15 +155,21 @@ public class AsyncLoadBalancerAutoConfigurationTests { } @Override - @SneakyThrows public T execute(String serviceId, LoadBalancerRequest request) { - return request.apply(choose(serviceId)); + try { + return request.apply(choose(serviceId)); + } catch (Exception e) { + throw new RuntimeException(e); + } } @Override - @SneakyThrows public T execute(String serviceId, ServiceInstance serviceInstance, LoadBalancerRequest request) throws IOException { - return request.apply(choose(serviceId)); + try { + return request.apply(choose(serviceId)); + } catch (Exception e) { + throw new RuntimeException(e); + } } @Override From 94a42737ec482a47632c334ecac7eb03f4000c3d Mon Sep 17 00:00:00 2001 From: Johannes Edmeier Date: Tue, 25 Jul 2017 17:58:15 +0200 Subject: [PATCH 2/2] Fix empty keys in EnvironmentChangedEvent on resetting the Environment (#229) When the Environment is resetted the EnvironmentChangedEvent always contains an empty keySet, since the live view of the cleared map was used. This commit fixes this. --- .../environment/EnvironmentManager.java | 3 +- .../environment/EnvironmentManagerTest.java | 45 +++++++++++++++++++ 2 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 spring-cloud-context/src/test/java/org/springframework/cloud/context/environment/EnvironmentManagerTest.java diff --git a/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentManager.java b/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentManager.java index 91e625cf..6b4b7639 100644 --- a/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentManager.java +++ b/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentManager.java @@ -68,9 +68,8 @@ public class EnvironmentManager implements ApplicationEventPublisherAware { public Map reset() { Map result = new LinkedHashMap(map); if (!map.isEmpty()) { - Set keys = map.keySet(); map.clear(); - publish(new EnvironmentChangeEvent(keys)); + publish(new EnvironmentChangeEvent(result.keySet())); } return result; } diff --git a/spring-cloud-context/src/test/java/org/springframework/cloud/context/environment/EnvironmentManagerTest.java b/spring-cloud-context/src/test/java/org/springframework/cloud/context/environment/EnvironmentManagerTest.java new file mode 100644 index 00000000..518afe74 --- /dev/null +++ b/spring-cloud-context/src/test/java/org/springframework/cloud/context/environment/EnvironmentManagerTest.java @@ -0,0 +1,45 @@ +package org.springframework.cloud.context.environment; + + +import org.junit.Test; +import org.mockito.ArgumentCaptor; +import org.mockito.Mockito; +import org.springframework.context.ApplicationEvent; +import org.springframework.context.ApplicationEventPublisher; +import org.springframework.mock.env.MockEnvironment; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Mockito.*; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; + +public class EnvironmentManagerTest { + + @Test + public void testCorrectEvents() { + MockEnvironment environment = new MockEnvironment(); + ApplicationEventPublisher publisher = mock(ApplicationEventPublisher.class); + EnvironmentManager environmentManager = new EnvironmentManager(environment); + environmentManager.setApplicationEventPublisher(publisher); + + environmentManager.setProperty("foo", "bar"); + + assertThat(environment.getProperty("foo")).isEqualTo("bar"); + ArgumentCaptor eventCaptor = ArgumentCaptor.forClass(ApplicationEvent.class); + verify(publisher, times(1)).publishEvent(eventCaptor.capture()); + assertThat(eventCaptor.getValue()).isInstanceOf(EnvironmentChangeEvent.class); + EnvironmentChangeEvent event = (EnvironmentChangeEvent) eventCaptor.getValue(); + assertThat(event.getKeys()).containsExactly("foo"); + + reset(publisher); + + environmentManager.reset(); + assertThat(environment.getProperty("foo")).isNull(); + verify(publisher, times(1)).publishEvent(eventCaptor.capture()); + assertThat(eventCaptor.getValue()).isInstanceOf(EnvironmentChangeEvent.class); + event = (EnvironmentChangeEvent) eventCaptor.getValue(); + assertThat(event.getKeys()).containsExactly("foo"); + } + +} \ No newline at end of file