1. 12 Dec, 2014 3 commits
  2. 11 Dec, 2014 5 commits
  3. 10 Dec, 2014 1 commit
  4. 09 Dec, 2014 6 commits
  5. 08 Dec, 2014 3 commits
    • Merge branch 'master' into feignclient · f92e0103
      Spencer Gibb authored
      Conflicts:
      	spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/feign/SpringDecoderTests.java
    • add @DirtiesContext to tests · c1e6832d
      Spencer Gibb authored
    • Extract ribbon client factory into ApplicationContext · 64179235
      Dave Syer authored
      Using Spring as an object factory to control the lifecycle of ribbon clients.
      So far we have a single, parameterized configuration class for all clients, but
      can be extended to allow user to supply additional configuration. The current
      model for user extensions is
      
      @EnableRibbonClient(@RibbonClient(name = "foo", configuration = FooConfiguration.class))
      public class MainConfiguration {
          ...
      }
      
      So in this example, MainConfiguration is part of the "main" application context
      and FooConfiguration is used to create the Ribbon client and load balancer for
      the "foo" service.
  6. 06 Dec, 2014 1 commit
  7. 05 Dec, 2014 5 commits
  8. 04 Dec, 2014 14 commits
  9. 03 Dec, 2014 2 commits
    • Make ZuulHandlerMapping @RefreshScope. · 9c6474fb
      Spencer Gibb authored
      Handle InstanceRegisteredEvent and RefreshScopeRefreshedEvent in ZuulHandlerMapping rather than ProxyRouteLocator.
      Move /routes endpoint out of ZuulHandlerMapping into RoutesEndpoint (because of a problem when I added @RefreshScope to ZuulHandlerMapping)
    • Remove reflection hack · 5246b932
      Dave Syer authored