Camel将JSON转换为XML不起作用

时间:2015-03-26 22:25:39

标签: java xml json apache-camel

我正在尝试使用Apache Camel将JSON转换为XML,并遇到各种各样的问题。

以下是根据tutorial page应该有效的代码,但不是:

// from JSON to XML
from("direct:unmarshal").unmarshal(xmlJsonFormat).to("mock:xml");

我已将其放在RouteBuilder类中,并覆盖了configure()方法。

当我运行我的代码时,我会收到org.apache.camel.NoSuchEndpointException

有谁知道我错过了什么?

0 个答案:

没有答案