第 39 章 组件接口
摘要
本章论述了如何实施组件接口。
39.1. 组件接口
概述
要实施 Apache Camel 组件,您必须实施 org.apache.camel.Component 接口。组件类型的实例提供到自定义组件的入口点。也就是说,组件中所有其他对象都最终可通过
组件实例访问
。图 39.1 “组件继承层次结构” 显示构成 组件
继承层次结构的相关 Java 接口和类。
图 39.1. 组件继承层次结构
组件接口
例 39.1 “组件接口” 显示 org.apache.camel.Component 接口的定义。
例 39.1. 组件接口
package org.apache.camel; public interface Component { CamelContext getCamelContext(); void setCamelContext(CamelContext context); Endpoint createEndpoint(String uri) throws Exception; }
组件方法
-
getCamelContext ()
和setCamelContext ()
TOKEN-由该组件所属的CamelContext
进行参考。当您将组件添加到CamelContext
时,会自动调用setCamelContext ()
方法。 -
createEndpoint ()
TOKEN-vault The factory 方法被调用为这个组件创建Endpoint
实例。uri
参数是端点 URI,其中包含创建端点所需的详细信息。