346.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>
带有异步通信的 Thrift 服务消费者
from("thrift://localhost:1101/org.apache.camel.component.thrift.generated.Calculator") .to("direct:thrift-service");
可以使用 thrift-maven-plugin 为 .thrift 文件自动生成 Java 代码生成,但在启动 thrift 编译器二进制分发之前,您的操作系统必须存在于运行的主机上。