Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.此内容没有您所选择的语言版本。
Chapter 96. Ref
Ref Component 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
The ref: component is used for lookup of existing endpoints bound in the Registry.
URI format 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
ref:someName
ref:someName
Where someName is the name of an endpoint in the Registry (usually, but not always, the Spring registry). If you are using the Spring registry,
someName
would be the bean ID of an endpoint in the Spring registry.
Runtime lookup 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
This component can be used when you need dynamic discovery of endpoints in the Registry where you can compute the URI at runtime. Then you can look up the endpoint using the following code:
And you could have a list of endpoints defined in the Registry such as:
<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring"> <endpoint id="normalOrder" uri="activemq:order.slow"/> <endpoint id="bigspenderOrder" uri="activemq:order.high"/> ... </camelContext>
<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
<endpoint id="normalOrder" uri="activemq:order.slow"/>
<endpoint id="bigspenderOrder" uri="activemq:order.high"/>
...
</camelContext>
Sample 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
In the sample below we use the
ref:
in the URI to reference the endpoint with the spring ID, endpoint2
:
You could, of course, have used the
ref
attribute instead:
<to ref="endpoint2"/>
<to ref="endpoint2"/>
Which is the more common way to write it.