spring-cloud-openfeign
spring-cloud-openfeign copied to clipboard
Support for using OpenFeign in Spring Cloud apps
## WIP Notice I am currently working on this feature request across multiple repositories, so this this will be updated multiple times. Once finished, this notice will be removed. As...
In 2.2.2 RELEASE When I configured the Feign readTimeout and connectTimeout, I found that the Ribbon retry didn't work,like this: ```yaml ribbon: MaxAutoRetries: 2 MaxAutoRetriesNextServer: 2 OkToRetryOnAllOperations: true feign: client:...
We are using hystrix fallback with a feign client for preventing errors when a service is not available. Now we upgrade spring cloud to HOXTON.SR3 and found this note >...
We have observed an issue with Feign client. When we use regular expression in path variables to duplicate the Feign client. The GET method request is converted to POST method...
spring-boot-autoconfigure 2.2.0 change HttpMessageConverters auto configure with condition "NoReativeWebApplicationCondition", so when use openfeign to decode response, there will throws HttpMessageConverters not available exception, could you please add a HttpMessageConverters bean...
I want to set the Content-Type header programatically. When I try this happens: ``` Caused by: feign.codec.EncodeException: Invalid mime type "{Content-Type}": does not contain '/' at feign.ReflectiveFeign$BuildEncodedTemplateFromArgs.resolve(ReflectiveFeign.java:346) at feign.ReflectiveFeign$BuildTemplateByResolvingArgs.create(ReflectiveFeign.java:213) at...
In Spring MVC it is possible to [annotate body parameter as optional](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/bind/annotation/RequestBody.html) using `@RequestBody(required = false)` parameter annotation, e.g.: ``` java @FeignClient("foo-service") public interface FooService { @RequestMapping(value = "/foo", method...
I'm getting an error from StreamBridge when trying to send a message to a specific Kafka topic. Funny thing is that I only get this error sometimes. When I trigger...
Fixes #741 Make `AbstractFormWriter#isTypeOrCollection()` handle byte[] arrays correctly instead of casting byte[] to object[] directly.
Refer #710 - Created a model class `RefreshableUrl` to wrap url. - Created `RefreshableUrlFactoryBean` to create instance of `RefreshableUrl` bean with applicable configuration properties. - Created `RefreshableHardCodedTarget` to serve url...