使用 Mule 3 将 POJO 转换为 JSON

发布于 2024-12-28 06:59:36 字数 231 浏览 1 评论 0原文

我正在开始使用 Mule,但文档到处都是。我正在尝试编写一个相当简单的流程。这是我希望它做的事情:

  1. 调用返回 POJO 的现有 Spring 服务
  2. 从服务中获取 POJO 并转换为 JSON
  3. 通过 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:

  1. Call existing Spring service that returns a POJO
  2. Take POJO from service and convert to JSON
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

欢你一世 2025-01-04 06:59:36

使用简单服务模式。如果 POJO 带有 JAX-RS 注释,则非常简单:

<pattern:simple-service name="weather-report-rsc"
         address="http://localhost:6099/rest"
         component-class="org.mule.test.integration.tck.WeatherReportResource"
         type="jax-rs" />

在提供的 URL 上检查其他使用场景。

Use a simple service pattern. If the POJO is JAX-RS annotated, it's as simple as:

<pattern:simple-service name="weather-report-rsc"
         address="http://localhost:6099/rest"
         component-class="org.mule.test.integration.tck.WeatherReportResource"
         type="jax-rs" />

Check the other usage scenarios at the provided URL.

递刀给你 2025-01-04 06:59:36

我建议使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文