我一直在努力使下面的程序正常工作,但是我的代码或使用@XmlPath批注似乎都存在一些严重的缺陷。
我尝试解析的XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<information>
    <customer id="customer1">
        <billingAddress id="address1">
            <street id="street1">1 Billing Street</street>
            <street id="street2">2 Billing Street</street>
        </billingAddress>
    </customer>
</information>


我正在创建的Pojo:

package parser;


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

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

@ToString
@XmlRootElement(name = "information")
@XmlAccessorType(XmlAccessType.FIELD)
public class Information {

    @XmlPath("customer/@id")//-------------------------------------> (1)
    private String customerId;

    @XmlPath("customer[@id='customer1']/billingAddress/@id") //-----> (2)
    private String billingAddressId;

}


我如何解组xml:

import parser.Information;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import java.io.File;

public class Main {
    public static void main(String[] args) throws JAXBException {
        JAXBContext jaxbContext =  org.eclipse.persistence.jaxb.JAXBContextFactory.createContext(new Class[]{Information.class}, null);
        Unmarshaller jaxbMarshaller = jaxbContext.createUnmarshaller();

        Information information = (Information)jaxbMarshaller.unmarshal(new File("information.xml"));
        System.out.println(information);
    }
}


上面的输出是:

Information(customerId=null, billingAddressId=address1)


显然,输出不正确。 customerId显示的是null而不是customer1。但是,如果我注释掉pojo类中的第(2)行,则customerId将获得正确的值。为什么会这样呢?为什么我不能在上述程序中读取正确的customerId值?

最佳答案

从第二个[@id='customer1']中删除​​XmlPath确实解决了所提供代码的问题,即使我假设实际的Information实体具有要使用XmlPath处理的更多字段。

为什么不使用一些类来反映XML结构……有点像面向对象?它将简化JAXB建模。

10-07 16:34