1. 08 Dec, 2014 1 commit
    • 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.
  2. 06 Dec, 2014 1 commit
  3. 05 Dec, 2014 2 commits
  4. 04 Dec, 2014 14 commits
  5. 03 Dec, 2014 6 commits
  6. 02 Dec, 2014 4 commits
  7. 01 Dec, 2014 4 commits
  8. 29 Nov, 2014 1 commit
    • Ensure user-suppplied ZuulFilters are added properly · 70c3d9e7
      Dave Syer authored
      Bean instantiation ordering was causing external (user-supplied)
      filter beans to replace the defaults, not append to them. Separating
      out the autowired map of beans into a spearate class was enough to
      fix it.
      
      Fixes gh-78
  9. 26 Nov, 2014 7 commits