Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
832bd41f
Commit
832bd41f
authored
Dec 30, 2015
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some docs for config properties
parent
86e16f58
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
EurekaClientConfigBean.java
...ramework/cloud/netflix/eureka/EurekaClientConfigBean.java
+8
-4
No files found.
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/eureka/EurekaClientConfigBean.java
View file @
832bd41f
...
...
@@ -44,13 +44,16 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan
@Autowired
(
required
=
false
)
PropertyResolver
propertyResolver
;
public
static
final
String
DEFAULT_URL
=
"http://localhost:8761"
+
DEFAULT_PREFIX
+
"/"
;
public
static
final
String
DEFAULT_URL
=
"http://localhost:8761"
+
DEFAULT_PREFIX
+
"/"
;
public
static
final
String
DEFAULT_ZONE
=
"defaultZone"
;
private
static
final
int
MINUTES
=
60
;
/**
* Flag to indicate that the Eureka client is enabled.
*/
private
boolean
enabled
=
true
;
private
EurekaTransportConfig
transport
=
new
CloudEurkeaTransportConfig
();
...
...
@@ -102,6 +105,7 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan
private
int
cacheRefreshExecutorExponentialBackOffBound
=
10
;
private
Map
<
String
,
String
>
serviceUrl
=
new
HashMap
<>();
{
this
.
serviceUrl
.
put
(
DEFAULT_ZONE
,
DEFAULT_URL
);
}
...
...
@@ -219,8 +223,8 @@ public class EurekaClientConfigBean implements EurekaClientConfig, EurekaConstan
@Override
public
String
getExperimental
(
String
name
)
{
if
(
propertyResolver
!=
null
)
{
return
propertyResolver
.
getProperty
(
PREFIX
+
".experimental."
+
name
,
if
(
this
.
propertyResolver
!=
null
)
{
return
this
.
propertyResolver
.
getProperty
(
PREFIX
+
".experimental."
+
name
,
String
.
class
,
null
);
}
return
null
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment