Fixed destination resolve conflict in StreamListenerAnnotationBeanPostProcessor
This commit is contained in:
@@ -318,7 +318,7 @@ public class StreamListenerAnnotationBeanPostProcessor implements BeanPostProces
|
|||||||
Collection<StreamListenerResultAdapter> streamListenerResultAdapters = this.applicationContext
|
Collection<StreamListenerResultAdapter> streamListenerResultAdapters = this.applicationContext
|
||||||
.getBeansOfType(StreamListenerResultAdapter.class).values();
|
.getBeansOfType(StreamListenerResultAdapter.class).values();
|
||||||
this.binderAwareChannelResolver = this.applicationContext
|
this.binderAwareChannelResolver = this.applicationContext
|
||||||
.getBean(DestinationResolver.class);
|
.getBean("binderAwareChannelResolver", DestinationResolver.class);
|
||||||
this.messageHandlerMethodFactory = this.applicationContext
|
this.messageHandlerMethodFactory = this.applicationContext
|
||||||
.getBean(MessageHandlerMethodFactory.class);
|
.getBean(MessageHandlerMethodFactory.class);
|
||||||
this.springIntegrationProperties = this.applicationContext
|
this.springIntegrationProperties = this.applicationContext
|
||||||
|
|||||||
Reference in New Issue
Block a user