第 284 章 RMI Component
从 Camel 版本 1.0 开始提供
rmi: 组件将 Exchanges 绑定到 RMI 协议(JRMP)。
由于此绑定只使用 RMI,因此普通的 RMI 规则仍应用于可调用哪些方法。此组件只支持从扩展远程接口的接口执行方法调用的 Exchange。方法中的所有参数都应是 Serializable 或 Remote
对象。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-rmi</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
284.1. URI 格式
rmi://rmi-regisitry-host:rmi-registry-port/registry-path[?options]
例如:
rmi://localhost:1099/path/to/service
您可以在 URI 中附加查询选项,格式为 ?option=value&option=value&…