SpringXD和集成:桥接、可轮询和;可下标信道

SpringXD和集成:桥接、可轮询和;可下标信道,spring,spring-integration,spring-xd,Spring,Spring Integration,Spring Xd,我正在阅读Spring集成文档,以了解如何实现与的桥接(这将是我的SpringXD模块之一) 所以说,基本上,我应该这样做: http://www.springframework.org/schema/beans/spring-beans.xsd “> 但我得到了: 2017-03-16T12:52:06-0300 1.3.0.RELEASE INFO DeploymentSupervisor-0 zk.ZKStreamDeploymentHandler-流“源customBridge接收器测

我正在阅读Spring集成文档,以了解如何实现与的桥接(这将是我的SpringXD模块之一)

所以说,基本上,我应该这样做:

http://www.springframework.org/schema/beans/spring-beans.xsd “>

但我得到了:

2017-03-16T12:52:06-0300 1.3.0.RELEASE INFO DeploymentSupervisor-0 zk.ZKStreamDeploymentHandler-流“源customBridge接收器测试”的部署状态:DeploymentStatus{state=failed,error(s)=org.springframework.beans.factory.BeanCreationException:创建名为“org.sprin”的bean时出错 gframework.integration.config.ConsumerndPointFactoryBean#0:调用init方法失败;嵌套异常为java.lang.IllegalArgumentException:不应为端点“org.springframework.integration.config.ConsumerndPointFactoryBean#0”指定轮询器,因为“pollable”是订阅


我缺少什么?

您缺少的问题是,
可轮询的
必须声明为:

<channel id="pollable">
    <queue/>
</channel>

您缺少的问题是,
可轮询的
必须声明为:

<channel id="pollable">
    <queue/>
</channel>

<channel id="pollable">
    <queue/>
</channel>