Dave Syer
880efd1843
Remove @AliasFor from @FeignClient.serviceId()
...
The way it was being used internally means that we didn't need the
annotation anyway. It would be nice to have it back if the Spring
issue gets resolved, because then we could actually use it as
intended.
Fixes gh-1025
9 years ago
Dave Syer
9823d07817
Revert "Add support in SpringMvcContract for query string in Class @RequestMapping"
...
This reverts commit 2c502e3997
.
9 years ago
Dave Syer
2b58487ad7
Fix typo Sream->Stream
9 years ago
Jacques-Etienne Beaudet
2c502e3997
Add support in SpringMvcContract for query string in Class @RequestMapping
...
This commit adds the support for query string defined in the class'
@RequestMapping Annotation that is applied to all method of a
controller.
Fxies gh-1023, fixes gh-1024
9 years ago
Dave Syer
32d481df26
Be defensive about classpath in eureka auto config
...
Before this change we were seeing test failures in
spring-cloud-netflix-eureka-server (but only with Spring Boot 1.4)
caused by annotation processing explosion when
RefreshScopeAutoConfiguration is not on the classpath.
9 years ago
Dave Syer
b084eb03ff
Re-instate .settings.xml for Travis
9 years ago
Dave Syer
043a965db3
Update README and remove .settings.xml where appropriate
9 years ago
Marcin Grzejszczak
65b4b0310b
Update runAcceptanceTests.sh
9 years ago
Dave Syer
5d50a773e7
Make test more robust by creating feign clients and validating them
...
This test should run with Spring Boot 1.4.0.M2 now.
See https://github.com/spring-projects/spring-boot/issues/5870
9 years ago
Dave Syer
c399f1117b
Revert to snapshots
9 years ago
Dave Syer
d9327a02a2
Update for 1.1.0.RELEASE
9 years ago
Dave Syer
617ecf11ec
Track customization of sensitive headers so route can be cleared
...
When the users explicitly sets the sensitive headers of a rroute to
empty, it means they should be empty, not the global defaults.
Fixes gh-1012
9 years ago
Spencer Gibb
83caebf384
Merge pull request #983 from venilnoronha/issue-966-fix
...
* issue-966-fix:
Adds path parameter to @FeignClient .
9 years ago
Venil Noronha
d3cba4d80e
Adds path parameter to @FeignClient .
...
Fixes gh-966
9 years ago
Spencer Gibb
654ea7094c
Merge pull request #1010 from shakuzen/patch-1
...
Typo fixes
9 years ago
Tommy Ludwig
52a3974a78
Typo fixes
9 years ago
Dave Syer
cbd398d7f6
Add explicit release disabled flag for artifactory for plugins
9 years ago
Dave Syer
12f3edd4ab
Add explicit release disabled flag for artifactory in dependencies
9 years ago
Spencer Gibb
76f292a6ba
Merge pull request #1007 from shivangshah/master
...
* pull1007:
Updating RxJava version to 1.1.5 This update on RxJava version is in regards to the PR that got merged [`here`](https://github.com/ReactiveX/RxJava/pull/3820 ) for making RxJavaPlugins' `reset` method to be public. We have to work this around in Spring Sleuth. Details on the implementation can be found [`here`] (https://github.com/spring-cloud/spring-cloud-sleuth/pull/243 ).
9 years ago
Shivang Shah
9ce9d670c9
Updating RxJava version to 1.1.5
...
This update on RxJava version is in regards to the PR that got merged [`here`](https://github.com/ReactiveX/RxJava/pull/3820 ) for making RxJavaPlugins' `reset` method to be public. We have to work this around in Spring Sleuth. Details on the implementation can be found [`here`] (https://github.com/spring-cloud/spring-cloud-sleuth/pull/243 ).
1.1.5
9 years ago
Spencer Gibb
4888299b28
polish
9 years ago
Dave Syer
e4f3428344
Add explicit release disabled flag for artifactory
9 years ago
Dave Syer
c4e879ea96
Switch parent of docs poms
9 years ago
Dave Syer
83235b13c1
Update parent to 1.1.0.RELEASE
9 years ago
Dave Syer
5de52b96f4
Some changes to help with Spring Boot 1.4 compatibility
...
The jackson version needs to be explicit (not in parent potentially)
and there is a weirdness with @RequestMapping in Spring 4.3
9 years ago
Spencer Gibb
2aedd9b27b
Merge pull request #1004 from jebeaudet/fix-IgnoredHeadersCasingNotIgnored
...
* fix-IgnoredHeadersCasingNotIgnored:
Sensitive headers set in PreDecorationFilter no longer override previously set ignored headers. Removed the case sensitiveness when the sensitive headers are set. Fixes https://github.com/spring-cloud/spring-cloud-netflix/issues/1003
Test for default ribbon client configuration
Tidy up more compiler warnings for generics
Add note to clarify that zuul starter does not include discovery
9 years ago
Jacques-Etienne Beaudet
ea1a4c5add
Sensitive headers set in PreDecorationFilter no longer override previously set ignored headers.
...
Removed the case sensitiveness when the sensitive headers are set.
Fixes https://github.com/spring-cloud/spring-cloud-netflix/issues/1003
9 years ago
Dave Syer
88864153eb
Test for default ribbon client configuration
9 years ago
Dave Syer
9ad3d21b75
Tidy up more compiler warnings for generics
9 years ago
Dave Syer
1c9d11de23
Add note to clarify that zuul starter does not include discovery
...
Fixes gh-992
9 years ago
Spencer Gibb
860d7b8446
Log warning if ServoMonitorCache size exceeds threshold.
...
Fixes gh-947
9 years ago
Sébastien PERALTA
5613e48141
Append to X-Forwarded-Prefix in case it already exists
...
Fixes gh-993
9 years ago
Dave Syer
3a251e2a38
Revert "Use the original query string when forwarding the request"
...
This reverts commit 8952cff24d
.
9 years ago
Dave Syer
c7c191c01e
Ensure Servo metrics are exported the same as default metrics
...
Adds an `@ExportMetricReader` which was missing before and
led to people losing their metric exports when they had Servo
on the classpath.
Also allow servo metrics autoconfiguration to be disabled via
a flag netflix.metrics.servo.enabled=false (as an alternative to
excluding the class in `@EnableAutoConfiguration`).
9 years ago
Dave Syer
e0bc9d11f1
Update docs for Turbine AMQP -> Stream
9 years ago
Dave Syer
6087bc755a
Use eureka.instance zone data consistently determining client zone
...
The zone for a remote server comes from its
eureka.instance.metadataMap.zone, but we didn't (until this change)
apply the same logic to the client. If the client is registering
itslef with eureka then it will have a metadataMap itself and
we should be able to just reverse the logic.
Fixes gh-991
9 years ago
Nicolas Byl
8952cff24d
Use the original query string when forwarding the request
...
to ensure compatibility with legacy apps
Fixes gh-989
9 years ago
Andrei Sfat
1c3de94c42
Add slash to eureka.client.service-url
...
Makes use of StringUtils.commaDelimitedListToStringArray
Fixes gh-980
9 years ago
Andrei Sfat
9bd3a66b16
#920 add slash when eureka.client.service-url.defaultZone does not contain one
9 years ago
Dave Syer
314d229ccf
Add @ConditionalOnEnabledHealthIndicator("hystrix")
...
Users will have to switch from health.hystrix.enabled to
management.health.* for consistency with other health
indicators.
Fixes gh-985
9 years ago
Matt Reynolds
5c2937b05c
filter basic auth credentials from Eureka replica data for display
...
so they don't appear on the dashboard
Fixes gh-974
9 years ago
Spencer Gibb
d1a31a9a2b
Upgrade feign to 8.16.2
...
fixes gh-987
9 years ago
Spencer Gibb
5acf4e1a2e
Throw IOException in RibbonLoadBalancerClient.execute
...
Fixes proper RestTemplate behavior.
fixes gh-986
9 years ago
Pedro Alvarado
2b40952429
Add support for placeholders to Feign spring-mvc RequestMapping annotation.
...
Fixes gh-894
9 years ago
Dave Syer
8b306df132
Use @PropertySource instead of @Bean for http encoder properties
...
Protects us against changes in Spring Boot 1.4 where the naming
convention changes.
9 years ago
Dave Syer
8a4fb82b98
Remove reference to 'parent' poms in BOM
9 years ago
Spencer Gibb
e0c67b30f8
Pass headers back to feign request.
...
Spring HttpMessageConverters can modify headers. This change passes the modified headersr back to the feign request, so the proper headers are sent on the request.
fixes gh-977
9 years ago
Spencer Gibb
33efc60de7
remove spring-cloud-connectors version
9 years ago
Dave Syer
5fc76aaa72
Fix javadocs in @FeignClient
...
The descriptions of name/serviceId/value and url were out of date
(name is mandatory now and can be mixed with url).
9 years ago
Dave Syer
24579f67e2
Revert to snapshots
9 years ago