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
ce1fcb15
Commit
ce1fcb15
authored
Nov 26, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove ugly depednency on Environment
You can bind to a Map<String,String> with application.yml, so there's no need to work so hard to extract the zuul routes.
parent
243e163d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
64 deletions
+34
-64
RouteLocator.java
.../org/springframework/cloud/netflix/zuul/RouteLocator.java
+14
-46
ZuulHandlerMapping.java
...pringframework/cloud/netflix/zuul/ZuulHandlerMapping.java
+1
-1
ZuulProperties.java
...rg/springframework/cloud/netflix/zuul/ZuulProperties.java
+7
-4
RouteLocatorTests.java
...springframework/cloud/netflix/zuul/RouteLocatorTests.java
+12
-13
No files found.
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/RouteLocator.java
View file @
ce1fcb15
...
...
@@ -4,34 +4,24 @@ import java.lang.reflect.Field;
import
java.util.LinkedHashMap
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.concurrent.atomic.AtomicReference
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.boot.bind.PropertySourceUtils
;
import
org.springframework.cloud.client.discovery.DiscoveryClient
;
import
org.springframework.cloud.context.environment.EnvironmentChangeEvent
;
import
org.springframework.context.ApplicationListener
;
import
org.springframework.context.EnvironmentAware
;
import
org.springframework.core.env.CompositePropertySource
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
org.springframework.core.env.MutablePropertySources
;
import
org.springframework.core.env.PropertySource
;
import
org.springframework.core.env.StandardEnvironment
;
import
org.springframework.util.ReflectionUtils
;
/**
* @author Spencer Gibb
*/
@Slf4j
public
class
RouteLocator
implements
ApplicationListener
<
EnvironmentChangeEvent
>
,
EnvironmentAware
{
public
class
RouteLocator
implements
ApplicationListener
<
EnvironmentChangeEvent
>
{
public
static
final
String
DEFAULT_ROUTE
=
"/"
;
private
ConfigurableEnvironment
env
=
new
StandardEnvironment
();
private
DiscoveryClient
discovery
;
private
ZuulProperties
properties
;
...
...
@@ -39,11 +29,6 @@ public class RouteLocator implements ApplicationListener<EnvironmentChangeEvent>
private
Field
propertySourcesField
;
private
AtomicReference
<
LinkedHashMap
<
String
,
String
>>
routes
=
new
AtomicReference
<>();
@Override
public
void
setEnvironment
(
Environment
environment
)
{
env
=
(
ConfigurableEnvironment
)
environment
;
}
public
RouteLocator
(
DiscoveryClient
discovery
,
ZuulProperties
properties
)
{
this
.
discovery
=
discovery
;
this
.
properties
=
properties
;
...
...
@@ -51,21 +36,21 @@ public class RouteLocator implements ApplicationListener<EnvironmentChangeEvent>
}
private
void
initField
()
{
propertySourcesField
=
ReflectionUtils
.
findField
(
CompositePropertySource
.
class
,
"propertySources"
);
propertySourcesField
=
ReflectionUtils
.
findField
(
CompositePropertySource
.
class
,
"propertySources"
);
propertySourcesField
.
setAccessible
(
true
);
}
@Override
public
void
onApplicationEvent
(
EnvironmentChangeEvent
event
)
{
for
(
String
key
:
event
.
getKeys
())
{
if
(
key
.
startsWith
(
properties
.
getRoutePrefix
()))
{
if
(
key
.
startsWith
(
properties
.
getMapping
()))
{
routes
.
set
(
locateRoutes
());
return
;
}
}
}
//TODO: respond to changes in eureka
public
Map
<
String
,
String
>
getRoutes
()
{
if
(
routes
.
get
()
==
null
)
{
routes
.
set
(
locateRoutes
());
...
...
@@ -77,54 +62,37 @@ public class RouteLocator implements ApplicationListener<EnvironmentChangeEvent>
protected
LinkedHashMap
<
String
,
String
>
locateRoutes
()
{
LinkedHashMap
<
String
,
String
>
routesMap
=
new
LinkedHashMap
<>();
//
Add routes for discovery services by default
//
Add routes for discovery services by default
List
<
String
>
services
=
discovery
.
getServices
();
for
(
String
serviceId
:
services
)
{
//
Ignore specified services
//
Ignore specified services
if
(!
properties
.
getIgnoredServices
().
contains
(
serviceId
))
routesMap
.
put
(
"/"
+
serviceId
+
"/**"
,
serviceId
);
}
MutablePropertySources
propertySources
=
env
.
getPropertySources
();
for
(
PropertySource
<?>
propertySource
:
propertySources
)
{
getRoutes
(
propertySource
,
routesMap
);
}
addConfiguredRoutes
(
routesMap
);
String
defaultServiceId
=
routesMap
.
get
(
DEFAULT_ROUTE
);
if
(
defaultServiceId
!=
null
)
{
//
move the defaultServiceId to the end
//
move the defaultServiceId to the end
routesMap
.
remove
(
DEFAULT_ROUTE
);
routesMap
.
put
(
DEFAULT_ROUTE
,
defaultServiceId
);
}
return
routesMap
;
}
protected
void
getRoutes
(
PropertySource
<?>
propertySource
,
Map
<
String
,
String
>
routes
)
{
if
(
propertySource
instanceof
CompositePropertySource
)
{
try
{
@SuppressWarnings
(
"unchecked"
)
Set
<
PropertySource
<?>>
sources
=
(
Set
<
PropertySource
<?>>)
propertySourcesField
.
get
(
propertySource
);
for
(
PropertySource
<?>
source
:
sources
)
{
getRoutes
(
source
,
routes
);
}
}
catch
(
IllegalAccessException
e
)
{
return
;
}
}
else
{
//EnumerablePropertySource enumerable = (EnumerablePropertySource) propertySource;
MutablePropertySources
propertySources
=
new
MutablePropertySources
();
propertySources
.
addLast
(
propertySource
);
Map
<
String
,
Object
>
routeEntries
=
PropertySourceUtils
.
getSubProperties
(
propertySources
,
properties
.
getRoutePrefix
());
for
(
Map
.
Entry
<
String
,
Object
>
entry
:
routeEntries
.
entrySet
())
{
protected
void
addConfiguredRoutes
(
Map
<
String
,
String
>
routes
)
{
Map
<
String
,
String
>
routeEntries
=
properties
.
getRoute
();
for
(
Map
.
Entry
<
String
,
String
>
entry
:
routeEntries
.
entrySet
())
{
String
serviceId
=
entry
.
getKey
();
String
route
=
entry
.
getValue
().
toString
()
;
String
route
=
entry
.
getValue
()
;
if
(
routes
.
containsKey
(
route
))
{
log
.
warn
(
"Overwriting route {}: already defined by {}"
,
route
,
routes
.
get
(
route
));
log
.
warn
(
"Overwriting route {}: already defined by {}"
,
route
,
routes
.
get
(
route
));
}
routes
.
put
(
route
,
serviceId
);
}
}
}
}
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/ZuulHandlerMapping.java
View file @
ce1fcb15
...
...
@@ -58,7 +58,7 @@ public class ZuulHandlerMapping extends AbstractUrlHandlerMapping implements
url
=
"/"
+
url
;
}
if
(
StringUtils
.
hasText
(
properties
.
get
RoutePrefix
()))
{
if
(
StringUtils
.
hasText
(
properties
.
get
Mapping
()))
{
url
=
properties
.
getMapping
()
+
url
;
if
(!
url
.
startsWith
(
"/"
))
{
url
=
"/"
+
url
;
...
...
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/ZuulProperties.java
View file @
ce1fcb15
package
org
.
springframework
.
cloud
.
netflix
.
zuul
;
import
lombok.Data
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
java.util.Collections
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
lombok.Data
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
/**
* @author Spencer Gibb
...
...
@@ -14,7 +17,7 @@ import java.util.List;
public
class
ZuulProperties
{
private
String
mapping
=
""
;
private
boolean
stripMapping
=
false
;
private
String
routePrefix
=
"zuul.route."
;
private
Map
<
String
,
String
>
route
=
new
HashMap
<
String
,
String
>()
;
private
boolean
addProxyHeaders
=
true
;
private
List
<
String
>
ignoredServices
=
Collections
.
emptyList
();
}
spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/zuul/RouteLocatorTests.java
View file @
ce1fcb15
package
org
.
springframework
.
cloud
.
netflix
.
zuul
;
import
com.google.common.collect.Lists
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
import
static
org
.
junit
.
Assert
.
assertNotNull
;
import
static
org
.
junit
.
Assert
.
assertNull
;
import
static
org
.
mockito
.
Mockito
.
when
;
import
static
org
.
mockito
.
MockitoAnnotations
.
initMocks
;
import
java.util.Map
;
import
org.junit.Before
;
import
org.junit.Test
;
import
org.mockito.Mock
;
import
org.springframework.cloud.client.discovery.DiscoveryClient
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.MutablePropertySources
;
import
org.springframework.mock.env.MockPropertySource
;
import
java.util.Map
;
import
static
org
.
junit
.
Assert
.*;
import
static
org
.
mockito
.
Mockito
.*;
import
static
org
.
mockito
.
MockitoAnnotations
.
initMocks
;
import
com.google.common.collect.Lists
;
/**
* @author Spencer Gibb
...
...
@@ -23,6 +25,7 @@ public class RouteLocatorTests {
public
static
final
String
IGNOREDSERVICE
=
"ignoredservice"
;
public
static
final
String
ASERVICE
=
"aservice"
;
public
static
final
String
MYSERVICE
=
"myservice"
;
@Mock
ConfigurableEnvironment
env
;
...
...
@@ -39,12 +42,8 @@ public class RouteLocatorTests {
ZuulProperties
properties
=
new
ZuulProperties
();
RouteLocator
routeLocator
=
new
RouteLocator
(
this
.
discovery
,
properties
);
properties
.
setIgnoredServices
(
Lists
.
newArrayList
(
IGNOREDSERVICE
));
routeLocator
.
setEnvironment
(
this
.
env
);
properties
.
getRoute
().
put
(
ASERVICE
,
"/"
+
ASERVICE
+
"/**"
);
MutablePropertySources
propertySources
=
new
MutablePropertySources
();
propertySources
.
addFirst
(
new
MockPropertySource
().
withProperty
(
"zuul.route."
+
ASERVICE
,
getMapping
(
ASERVICE
)));
when
(
env
.
getPropertySources
()).
thenReturn
(
propertySources
);
when
(
discovery
.
getServices
()).
thenReturn
(
Lists
.
newArrayList
(
MYSERVICE
,
IGNOREDSERVICE
));
...
...
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