如何序列化Map使用简单 XML?

发布于 2024-09-11 10:11:59 字数 335 浏览 7 评论 0 原文

您如何使用 简单 XML 序列化地图,使其看起来像:

<elem foo="value">key</elem>

而不是正常

<elem foo="key">value</elem>

(地图是一对多,并且由于这将由人类编辑,我希望它更清晰。)

[编辑]: 不修复。

How would you go about serialising a Map using simple XML so that it looks something like:

<elem foo="value">key</elem>

Instead of the normal

<elem foo="key">value</elem>

(The map is one to many, and since this will be edited by humans, I wanted it to be clearer.)

[EDIT]: Doesn't Fix.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

友谊不毕业 2024-09-18 10:11:59

您是否尝试过类似的操作:

@ElementMap(entry="property", value="value", attribute=true, inline=true)
private Map<String, String> map;

或某种组合,即使用 @ElementMap 注释也 吗?

Have you tried something like:

@ElementMap(entry="property", value="value", attribute=true, inline=true)
private Map<String, String> map;

or some combination, i.e. to use the other attributes of the @ElementMap annotation too?

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