48.4. 使用 BindingComponent
有一个名为 BindingComponent 的组件,它可以通过依赖项注入在 Registry 中配置,允许创建已绑定到某些绑定的端点。
例如,如果您使用如下代码在 registry 中注册了一个名为 "jsonmq" 的新组件
JacksonDataFormat format = new JacksonDataFormat(MyBean.class); context.bind("jsonmq", new BindingComponent(new DataFormatBinding(format), "activemq:foo."));
然后,您可以使用端点,就像它是任何其他端点一样。
from("jsonmq:myQueue").to("jsonmq:anotherQueue")
这将使用 queueus "foo.myQueue" 和 "foo.anotherQueue",并使用给定的 Jackson Data Format 来对队列进行 marshal。