JAXB,包含时如何跳过类标签

发布于 2024-11-06 05:40:35 字数 565 浏览 0 评论 0原文

获取 XML:

<person>
    <foo>thing</foo>
    <bar>other</bar>
</person>

从该代码中

public class Person {
    private InnerThing in;
}

public class InnerThing {
    private String foo;
    private String bar;
}

我正在尝试使用 JAXB java 注释

。默认情况下,我得到

<person>
    <innerThing>
        <foo>thing</foo>
        <bar>other</bar>
    </innerThing>
</person>

如何仅使用注释跳过 InnerThing 标记?

I'm trying to get that XML:

<person>
    <foo>thing</foo>
    <bar>other</bar>
</person>

from that code

public class Person {
    private InnerThing in;
}

public class InnerThing {
    private String foo;
    private String bar;
}

with JAXB java annotations.

By default, I get

<person>
    <innerThing>
        <foo>thing</foo>
        <bar>other</bar>
    </innerThing>
</person>

How can I skip the InnerThing tag with just annotations?

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

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

发布评论

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

评论(1

过度放纵 2024-11-13 05:40:35

您可以使用 EclipseLink JAXB (MOXy) 的 @XmlPath 注释来解决此问题(我我是 MOXy 技术负责人):

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;

import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Person {

    @XmlPath(".")
    private InnerThing in;

}

了解更多信息:

You could use EclipseLink JAXB (MOXy)'s @XmlPath annotation to solve this problem (I'm the MOXy tech lead):

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;

import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Person {

    @XmlPath(".")
    private InnerThing in;

}

For More Information:

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