python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
feign.RetryableException: Connection refused (Connection refused) executing GET
I am working on a core banking solution. I have two microservices that are called account-cmd-service and customer-service. I have been trying to get a customer by id from customer-service by using Fe...

Ismail Dogan
Votes: 0
Answers: 1
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
Spring Boot Feign client - interceptor not working
I have feign client interceptor which adds Auth header (bearer token being fetched by RestTemplate). If the server responds with 401 (expired token) I want to reauthenticate and try the request again ...
Aleksa
Votes: 0
Answers: 0
About Feign : ERROR org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter -
When I import dependency
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
<version...
HuLu
Votes: 0
Answers: 0