1. 19 Dec, 2014 3 commits
  2. 18 Dec, 2014 1 commit
  3. 17 Dec, 2014 3 commits
  4. 16 Dec, 2014 8 commits
  5. 15 Dec, 2014 6 commits
  6. 12 Dec, 2014 4 commits
  7. 11 Dec, 2014 5 commits
  8. 10 Dec, 2014 1 commit
  9. 09 Dec, 2014 6 commits
  10. 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.