gpt4 book ai didi

jaxb - XmlSeeAlso 和 XmlRootElement 名称?

转载 作者:行者123 更新时间:2023-12-04 17:11:15 30 4
gpt4 key购买 nike

在引用 JAXB 实现中,无论如何要让 XmlSeeAlso 使用来自 XmlRootElement 的 name= 值?

我想要的效果是 type 属性使用 name= value 而不是来自 XmlSeeAlso 的实际类名。

这可能是其他一些 JAXB 实现吗?

小例子:

@XmlRootElement(name="some_item")
public class SomeItem{...}

@XmlSeeAlso({SomeItem.class})
public class Resource {...}

XML:
<resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="some_item">
...
</resource>

不费吹灰之力就可以吗?

最佳答案

关于 @XmlSeeAlso
@XmlSeeAlso的目的注释只是为了让您的 JAXB (JSR-222) 实现知道它在处理 Resource 的元数据时它还应该处理 SomeItem 的元数据类(class)。有些人错误地认为它与映射继承有关,因为这是它最常使用的用例。由于使用 Java 反射无法确定类的子类,@XmlSeeAlso用于让 JAXB 实现知道还应该创建子类的映射。

以下是您如何支持用例的示例:

资源

对应于 Java 类的复杂类型名称通过 @XmlType 提供。注解。

package forum12288631;

import javax.xml.bind.annotation.XmlType;

@XmlType(name="some_item")
public class Resource {

}

演示

根元素名称可以来自 @XmlRootElement注释或可以通过 JAXBElement 的实例提供.我们将创建一个 JAXBElement 的实例并表明它持有 Object 的实例.编码时,这将用于 xsi:type要包含在输出中的属性。

package forum12288631;

import javax.xml.bind.*;
import javax.xml.namespace.QName;

public class Demo {

public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Resource.class);

Resource resource = new Resource();
JAXBElement<Object> jaxbElement = new JAXBElement<Object>(QName.valueOf("resource"), Object.class, resource);

Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(jaxbElement, System.out);
}

}

输出

生成的 XML 具有由 JAXBElement 提供的根元素。以及 xsi:type 的值属性来自 @XmlType Resource上的注释.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="some_item"/>

关于jaxb - XmlSeeAlso 和 XmlRootElement 名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12288631/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com