Is it possible to add a property to the application.yml to include/exclude certain exceptions from being retried in the policy defined below? I swear that I read somewhere that there is a property for this, but now I cannot find it again for the life of me. Any help would be appreciated.
spring:
cloud:
stream:
kafka:
binder:
brokers: localhost:9092
bindings:
topic-in:
destination: topic
contentType: application/json
group: topic-group
consumer:
max-attempts: 3
backOffInitialInterval: 1000
backOffMaxInterval: 1000
backOffMultiplier: 3