mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
This commit adapts the auto-configuration of AMQP message listeners and RabbitTemplate moving away from Spring Retry. One important change is that message listeners now only require a RetryPolicy. To make the callback explicit, two customizers have been introduced to clearly separate the scope of the customization: * RabbitTemplateRetrySettingsCustomizer for the client-side and usage of RabbitTemplate. * RabbitListenerRetrySettingsCustomizer for message listeners. Closes gh-47122