I noticed several customizers in the KafkaBinderConfiguration, which we can pass to customize the binder. But in the case of multiple binders, the customizer beans won't be picked up. It may relate to this line in DefaultBinderFactory
:
boolean useApplicationContextAsParent = binderProperties.isEmpty()
&& this.context != null;
How can these customizers be picked up in a binder context if this binder context's useApplicationContextAsParent
equals to false?