现在,我正在尝试通过以下内容访问基础的kafka流式处理 - Multi__apache_kafka_streams_binder.html#_accessing_the_underlying_kafkastreams_object想知道是否有一种更惯用的方法可以做到这一点。尤其是当有untiple绑定时。
您可以致电context.getBeansOfType(StreamsBuilderFactoryBean.class, false, false)
获取beanName:factoryBean
的地图。
但是,您应该小心不要在上下文生命周期中过早执行此操作,因为您可能会导致过早的Bean实例化。
最好在SmartInitializingSingleton
中进行。