0

每当 JMS 队列中有新条目时,我需要编写代码,我希望将该条目保留在 MySql 数据库中。我读到这可以使用 Apache Camel 项目。任何人都可以指出示例或与之相关的一些文档。

洛克什

4

1 回答 1

0

是的,这很简单。至少 JMS 和数据库部分。

from("jms:queue:someQueue")
 .bean(SomeTransformerBean.class) // transform the message, custom code etc in 
 .to("sql:insert into FOO X VALUES(#)"); // need to enter some valid SQL statement here

在这里阅读更多

http://camel.apache.org/sql-component.html

在这里 http://camel.apache.org/jms

于 2013-01-08T12:01:18.220 回答