You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue KafkaListenerContainerCustomizer extends ListenerContainerCustomizer, but without overriding its only method, forcing all implementations to
declare a class to implement it (cannot use a lambda to benefit from the additional parameter)
also provide a no-op implementation of ListenerContainerCustomizer.configure() (since it will never be called)
It would be better to provide a default implementation for it instead, like ListenerContainerWithDlqAndRetryCustomizer does. Moreover, KafkaListenerContainerCustomizer.configure() shouldn’t delegate to ListenerContainerCustomizer.configure() since there is no point in implementing KafkaListenerContainerCustomizer if you don’t override it.
Version of the framework: 4.2.1 Expected behavior: be able to implement KafkaListenerContainerCustomizer with a lambda that gets the additional ExtendedConsumerProperties parameter.
Additional context
This interface was introduced in #3015, in the scope of #2985