如何在Apache Camel 3中将XML转换为JSON

时间:2019-04-10 09:57:00

标签: java json xml apache-camel

我有一个返回XML字符串的bean,我想将其转换为JSON。

XmlJson data format在Camel 3中似乎已被弃用。将XML转换为JSON的最佳方法是什么?没有可以用作中间表示形式的POJO类。

预期代码:

rest().post("/hello")
  .route()
    .to("bean:myBean?method=methodThatReturnsXML")
    .unmarshal() // something with XML
    .marshal() // something with JSON

rest().post("/hello")
  .route()
    .to("bean:myBean?method=methodThatReturnsXML")
    .transform() // something

0 个答案:

没有答案