因此,我现在面临的问题要求我们执行以下操作:
我们在团队中使用Camel,之前没有任何使用过。根据我的阅读和研究,听起来这是Camel应该支持的内容,但我不知道我们如何配置路由以使其工作。
感谢任何帮助!
答案 0 :(得分:0)
简而言之,就像这样......
from("activemq:queue:inbound")
.process(new PreProcessor()) //parses inbound message and prepares server request
.to("http://someserver") //could be any request/reply endpoint
.process(new PostProcessor()) //parses the response and prepares the outbound message
.to("activemq:queue:outboud");