Commit 832bd41f by Dave Syer

Add some docs for config properties

parent 86e16f58
...@@ -44,13 +44,16 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan ...@@ -44,13 +44,16 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan
@Autowired(required = false) @Autowired(required = false)
PropertyResolver propertyResolver; PropertyResolver propertyResolver;
public static final String DEFAULT_URL = "http://localhost:8761" public static final String DEFAULT_URL = "http://localhost:8761" + DEFAULT_PREFIX
+ DEFAULT_PREFIX + "/"; + "/";
public static final String DEFAULT_ZONE = "defaultZone"; public static final String DEFAULT_ZONE = "defaultZone";
private static final int MINUTES = 60; private static final int MINUTES = 60;
/**
* Flag to indicate that the Eureka client is enabled.
*/
private boolean enabled = true; private boolean enabled = true;
private EurekaTransportConfig transport = new CloudEurkeaTransportConfig(); private EurekaTransportConfig transport = new CloudEurkeaTransportConfig();
...@@ -102,6 +105,7 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan ...@@ -102,6 +105,7 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan
private int cacheRefreshExecutorExponentialBackOffBound = 10; private int cacheRefreshExecutorExponentialBackOffBound = 10;
private Map<String, String> serviceUrl = new HashMap<>(); private Map<String, String> serviceUrl = new HashMap<>();
{ {
this.serviceUrl.put(DEFAULT_ZONE, DEFAULT_URL); this.serviceUrl.put(DEFAULT_ZONE, DEFAULT_URL);
} }
...@@ -219,8 +223,8 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan ...@@ -219,8 +223,8 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan
@Override @Override
public String getExperimental(String name) { public String getExperimental(String name) {
if (propertyResolver != null) { if (this.propertyResolver != null) {
return propertyResolver.getProperty(PREFIX + ".experimental." + name, return this.propertyResolver.getProperty(PREFIX + ".experimental." + name,
String.class, null); String.class, null);
} }
return null; return null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment