SpringIntegration DSL创建等效物的方式是什么
<int:gateway service-interface="MyService" default-request-channel="myService.inputChannel"/>
// where my existing interface looks like
interface MyService { process(Foo foo); }
我无法在org.springframework.integration.dsl
找到一家工厂,IntegrationFlows.from(...)
的论据列表都没有帮助自我发现。
感觉就像我错过了 https://github.com/spring-projects/spring-integration-java-dsl/wiki/Spring-Integration-Java-DSL-Reference#using-protocol-adapters 的Java
协议适配器之类的东西。
// I imagine this is what I can't find
IntegrationFlows.from(Java.gateway(MyService.class)
.channel("myService.inputChannel")
.get();
我唯一遇到的是在一篇旧的博客文章中,但它似乎需要用@MessagingGateway
和@Gateway
注释界面,我想避免这种情况。见 https://spring.io/blog/2014/11/25/spring-integration-java-dsl-line-by-line-tutorial
我们最近在Spring Integration 5.0中做到了这一点。有了这个,你真的可以做到这一点:
@Bean
public IntegrationFlow controlBusFlow() {
return IntegrationFlows.from(ControlBusGateway.class)
.controlBus()
.get();
}
public interface ControlBusGateway {
void send(String command);
}
在最新的博客文章中查看更多信息。
现在,除非在接口上声明@MessagingGateway
并从该网关定义的请求通道启动流,否则您别无选择。