python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Replace org.springframework.cloud.openfeign.ribbon.CachingSpringLoadBalancerFactory
When I upgrade implementation 'org.springframework.cloud:spring-cloud-openfeign-core:2.2.2.RELEASE' to latest version implementation 'org.springframework.cloud:spring-cloud-openfeign-core:3.1.1'
I get...
Peter Penzov
Votes: 0
Answers: 1
AWS XRay wrong service map when using OpenFeign with AppMesh and AWS Service Discovery
I'm testing interservice communication with Spring Boot Rest services deployed on AWS with AppMesh and Service Discovery enabled. To be able to send messages from service a to service b I've to use th...
czetsuya
Votes: 0
Answers: 2
Using enum as @PathVariable in FeignClient
I don't know how to make FeignClient working with enum serialization as @PathVariable.
I have enum type representing Access Type:
public enum StorageFileAccessType {
TOKEN(0),
SMSCODE(1);
...
manix
Votes: 0
Answers: 0
Multiple blocking calls wrapped in fromCallable in WebFlux
I'm using Feign Client in Reactive Java. The Feign client has an interceptor that sends a blocking request to get auth token and adds it as a header to the feign request.
the feign request is wrapped ...
Lior Derei
Votes: 0
Answers: 1