2.62. Ref
将消息路由到端点,并在 Camel Registry 中按名称动态查找。
2.62.1. 内部内容
-
ref 组件, URI 语法:
ref:name
有关使用和配置详情,请参阅上述链接。
2.62.2. Maven 协调
在 code.quarkus.redhat.com 上创建一个具有此扩展名的新项目
或者在现有项目中添加协调:
<dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-ref</artifactId> </dependency>
2.62.3. 使用方法
CDI 生产者方法可以利用将端点绑定到 Camel 注册表,以便使用 Camel 路由中的 ref
URI 方案来解决这些端点。
例如,要生成端点 Bean:
@ApplicationScoped public class MyEndpointProducers { @Inject CamelContext context; @Singleton @Produces @Named("endpoint1") public Endpoint directStart() { return context.getEndpoint("direct:start"); } @Singleton @Produces @Named("endpoint2") public Endpoint logEnd() { return context.getEndpoint("log:end"); } }
使用 ref:
引用绑定到 Camel registry 的 CDI Bean 的名称:
public class MyRefRoutes extends RouteBuilder { @Override public void configure() { // direct:start -> log:end from("ref:endpoint1") .to("ref:endpoint2"); } }