A developer wants to validate that Spring Cloud Feign retry logic does not retry non-idempotent POST requests. What is the evidence-based recommended approach?
-
A
Disable the Feign retryer entirely and rely on the caller to retry
-
B
Configure a custom Retryer that retries only on connection errors and limits retries to idempotent HTTP methods
-
C
Set feign.client.config.default.retryon=GET in application.properties
-
D
Feign never retries by default, so no configuration is needed