我有一个返回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