使用 Mule 3 将 POJO 转换为 JSON
我正在开始使用 Mule,但文档到处都是。我正在尝试编写一个相当简单的流程。这是我希望它做的事情:
- 调用返回 POJO 的现有 Spring 服务
- 从服务中获取 POJO 并转换为 JSON
- 通过 URL 显示 JSON
我找不到任何关于如何以及是否可以在 Mule 中完成此操作的明确文档3. 看起来这应该是一个相当简单的流程。
谢谢。
I'm getting started using Mule, but the documentation is all over the place. I am trying to write a fairly simple flow. Here is what I'd like it to do:
- Call existing Spring service that returns a POJO
- Take POJO from service and convert to JSON
- Display JSON via a URL
I can't find any definitive documentation on how and if this can be done in Mule 3. It seems like it should be a fairly straight forward flow.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用简单服务模式。如果 POJO 带有 JAX-RS 注释,则非常简单:
在提供的 URL 上检查其他使用场景。
Use a simple service pattern. If the POJO is JAX-RS annotated, it's as simple as:
Check the other usage scenarios at the provided URL.
我建议使用 Jersey 端点。创建一个返回 POJO 的服务,指定它是 JSON 格式。正如 NimChimpsky 指出的,POJO 将被 Jackson 自动转换为 JSON。
我认为这部分的骡子部分记录在泽西岛部分。
I'd suggest a Jersey endpoint. Create a service that returns the POJO specifies that it is in JSON format. As NimChimpsky pointed out, the POJO will automagically be converted to JSON by Jackson.
The mule part of this is documented in the Jersey section I think.