到目前为止,我已经实现了Spring XD处理器,例如:像这样:
@MessageEndpoint
public class MyTransformer
{
@Transformer( inputChannel = "input", outputChannel = "output" )
public String transform( String payload )
{
...
}
};
但是,我现在坚持实施自定义接收器。目前的文档不是很有帮助,因为它只是简单地配置了一些东西"神奇地"通过XML:
<beans ...>
<int:channel id="input" />
<int-redis:store-outbound-channel-adapter
id="redisListAdapter" collection-type="LIST" channel="input" key="${collection}" auto-startup="false"/>
<beans:bean id="redisConnectionFactory"
class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<beans:property name="hostName" value="${host}" />
<beans:property name="port" value="${port}" />
</beans:bean>
</beans>
这将使用redis store-outbound-channel-adapter作为接收器。但是,文档并没有告诉我如何创建一个简单的通用接收器,它只有一个输入通道并消耗一条消息。
那么有人能为我提供一个最小的工作示例吗?
答案 0 :(得分:2)
接收器就像处理器但没有输出通道;使用@ServiceActivator
来调用您的代码(应该返回void
)。
@MessageEndpoint
public class MyService
{
@ServiceActivator( inputChannel = "input")
public void handle( String payload )
{
...
}
};
修改强>
对于消息来源,有两种类型:
轮询(从源中提取消息):
@InboundChannelAdapter(value = "output",
poller = @Poller(fixedDelay = "5000", maxMessagesPerPoll = "1"))
public String next() {
return "foo";
}
消息驱动(源推送消息的地方):
@Bean
public MySource source() {
// return my subclass of MessageProducer that has outputChannel injected
// and calls sendMessage
// or use a simple POJO that uses MessagingTemplate.convertAndSend(foo)
}