spring-cloud-openfeign icon indicating copy to clipboard operation
spring-cloud-openfeign copied to clipboard

Support for using OpenFeign in Spring Cloud apps

Results 147 spring-cloud-openfeign issues
Sort by recently updated
recently updated
newest added
trafficstars

## 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...

enhancement
icebox

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:...

in progress

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 >...

in progress

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...

in progress

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...

enhancement

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...

enhancement
help wanted

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...

enhancement
help wanted

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...

waiting-for-triage

Fixes #741 Make `AbstractFormWriter#isTypeOrCollection()` handle byte[] arrays correctly instead of casting byte[] to object[] directly.

in progress

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...

in progress