1. 18 Jul, 2017 1 commit
  2. 11 Jul, 2017 1 commit
  3. 07 Jul, 2017 2 commits
    • FeignClient Configuration Properties (#1942) · c2c63470
      Eko Kurniawan Khannedy authored
      * add feign client properties
      
      * configure feign builder from properties if exists
      
      * change string config to class config and add unit test for feign client using configuration properties
      
      * refactoring and add primary flag configuration
      
      * add decode404 in feign client configuration properties
      
      * change unit test properties decode404 to true
      
      * remove lombok from FeignClientProperties and change primary attribute to default-to-properties
      
      fixes gh-1931
    • Support for re-writing Location Headers (#1863) · 0579b326
      Biju Kunjummen authored
      * Support for re-writing Location Headers
      
      * Added additional constructor for Route, removed auto-configuration of LocationRewriteFilter
      
      * Polished docs, more tests
  4. 01 Jul, 2017 1 commit
    • Add options for RibbonCommand to use separate thread pools for hystrix (#2074) · 8e11514e
      Yongsung Yoon authored
      * Add options for RibbonCommand to use separate thread pools for hystrix
      
      * Remove lombok annotation and Add getter/setter for ZuulProperties$HystrixThreadPool
      
      * Add doc about how to configure hystrix thread pools in Zuul Developer Guide
      
      * Add testcases for HystrixThreadPoolKey of RibbonCommand
      
      * Tiny change about if block in AbstractRibbonCommand
  5. 01 Jun, 2017 1 commit
  6. 31 May, 2017 1 commit
  7. 22 May, 2017 3 commits
  8. 11 May, 2017 1 commit
  9. 07 Apr, 2017 3 commits
  10. 05 Apr, 2017 1 commit
  11. 04 Apr, 2017 1 commit
  12. 24 Mar, 2017 1 commit
  13. 23 Mar, 2017 1 commit
  14. 16 Mar, 2017 2 commits
  15. 14 Mar, 2017 2 commits
  16. 13 Mar, 2017 1 commit
    • Update docs as @Autowired fails with many beans · db7d352c
      Jack Harris authored
      Fix a suspected typo. @Autowired throws a `NoUniqueBeanDefinitionException` if there are multiple beans of the same type without a primary, but the documentation said multiple beans 'cause `@Autowired` to work', rather than 'not work'.
  17. 03 Mar, 2017 1 commit
  18. 01 Mar, 2017 2 commits
  19. 28 Feb, 2017 1 commit
  20. 17 Feb, 2017 1 commit
  21. 16 Feb, 2017 1 commit
    • Add @FeignClient(primary) · e3341a19
      Spencer Gibb authored
      Adds the ability to turn off Spring Cloud Netflix making the feign instances as primary.
      
      fixes gh-1016
  22. 15 Feb, 2017 1 commit
  23. 14 Feb, 2017 1 commit
  24. 10 Feb, 2017 1 commit
  25. 09 Feb, 2017 4 commits
  26. 04 Feb, 2017 1 commit
  27. 27 Jan, 2017 2 commits
  28. 26 Jan, 2017 1 commit
    • Fix docs about @Configuration with @FeignClient (#1650) · 65829c43
      Matt Sicker authored
      As discovered in #1643, using `@Configuration` on a custom configuration with `@FeignClient` is unnecessary and creates extra work for exclusion from a `@ComponentScan`. This updates the docs to make this explicit.