本文主要是介绍camel ProducerTemplate使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、首先在processor中声明注入
@Produce
protected ProducerTemplate template;
2、指定enpoint
Endpoint e = dataImportcamelContext.getEndpoint(“vm:abc”);
其中vm:abc是在camelContext的上下文中存在的enpooint
eg: <from uri="vm:abc"/>
<to uri =""/>去到新的producer
3、调用触发
template.sendBody(e, param); //param为放在body的内容
这篇关于camel ProducerTemplate使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!