gpt4 book ai didi

java - 配置多态对象集合以在 JAXB2 中工作

转载 作者:搜寻专家 更新时间:2023-10-31 19:49:53 25 4
gpt4 key购买 nike

我正在从 Castor 切换到 JAXB2 以在 XML 和 Java 对象之间执行编码(marshal)处理/解封处理。我在尝试配置多态对象集合时遇到问题。

示例 XML

<project name="test project">
<orange name="fruit orange" orangeKey="100" />
<apple name="fruit apple" appleKey="200" />
<orange name="fruit orange again" orangeKey="500" />
</project>

项目类

oranges 列表工作正常,我在列表中看到 2 个橙子。但是,我不确定如何配置 fruitListfruitList 应该有 3 个水果:2 个橙子和 1 个苹果。

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

@XmlAttribute
private String name;

@XmlElement(name = "orange")
private List<Orange> oranges = new ArrayList<Orange>();

// Not sure how to configure this... help!
private List<Fruit> fruitList = new ArrayList<Fruit>();
}

水果类

Fruit 是一个抽象类。出于某种原因,将此类定义为抽象类似乎会导致很多问题。

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public abstract class Fruit {

@XmlAttribute
private String name;
}

橙类

public class Orange extends Fruit {

@XmlAttribute
private String orangeKey;
}

苹果类

public class Apple extends Fruit {

@XmlAttribute
private String appleKey;
}

如何在 Project 中配置我的 fruitList 以实现我在这里想要的?

非常感谢!

最佳答案

您想利用 @XmlElementRef 这对应于与您的问题相对应的替换组的 XML 模式概念。

第 1 步 - 使用 @XmlElementRef

fruitList 属性用@XmlElementRef 注释:

import java.util.ArrayList;
import java.util.List;

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

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

@XmlAttribute
private String name;

@XmlElementRef
private List<Fruit> fruitList = new ArrayList<Fruit>();

}

第 2 步 - 使用 @XmlRootElement 注释 Apple 和 Orange

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

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Apple extends Fruit {

@XmlAttribute
private String appleKey;

}

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

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Orange extends Fruit {

@XmlAttribute
private String orangeKey;

}

演示代码

下面的代码可以用来演示解决方案:

import java.io.File;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

public class Demo {

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

Unmarshaller unmarshaller = jc.createUnmarshaller();
Project project = (Project) unmarshaller.unmarshal(new File("input.xml"));

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

}

更多信息:

关于java - 配置多态对象集合以在 JAXB2 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4888228/

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