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 自动执行 Java 代码生成 .thrift 文件,但在运行主机上必须为您的操作系统启动 thrift 编译器二进制分发。