345.6. 例子
以下是通过主机和端口参数调用的简单同步方法
from("direct:thrift-calculate") .to("thrift://localhost:1101/org.apache.camel.component.thrift.generated.Calculator?method=calculate&synchronous=true");
以下是 XML DSL 配置的简单同步方法调用
<route> <from uri="direct:thrift-add" /> <to uri="thrift://localhost:1101/org.apache.camel.component.thrift.generated.Calculator?method=add&synchronous=true"/> </route>
带有异步通信的服务消费者
from("thrift://localhost:1101/org.apache.camel.component.thrift.generated.Calculator") .to("direct:thrift-service");
可以使用 thrift-maven-plugin 自动进行 Java 代码生成 .thrift 文件,但在启动 thrift 编译器二进制分发之前,您的操作系统必须在运行的主机上存在。