Create FeignClient With Constructor
I know that we can create FeignClient like:
How to set the maximum response size for feign client call?
I am using feign client to call an api in a spring boot application. It is failing because of the huge size of the response. Approx 10MB. Tried to setup in application.yml
feign:client:config:default:maxResponseSize: 10485760
but it’s not working.
How to set the maximum redponse size for feign client call?
I am using feign client to call an api in a spring boot application. It is failing because of the huge size of the response. Approx 10MB. Tried to setup in spplication.yml
feign:client:config:default:maxResponseSize: 10485760
but it’s not working.
Best way to get spring boot feign response headers
I have a spring boot 3.x.x application and I am using feign client.