【发布时间】:2015-05-30 19:41:59
【问题描述】:
如何在 Spring Integration 中为 outbound gateway 指定服务实现?如果出站网关用于双向通信并且通常用于提供与外部系统的集成,而服务激活器用于本地服务调用,那么如何为自定义传输/外部系统实现出站网关? Gateway namespace 允许设置入站网关的服务接口,但是出站网关的服务实现呢?
<int:gateway id="cafeService"
service-interface="org.cafeteria.Cafe"
default-request-channel="requestChannel"
default-reply-channel="replyChannel"/>
【问题讨论】:
标签: java spring integration spring-integration integration-patterns