jaxb意外元素错误local:root

时间:2013-10-14 14:27:56

标签: java xml jaxb

似乎有一些关于这个问题的帮助主题,但我没有找到一个解决方案,一直困扰着我。

我必须使用下面的xml结构:

<Customer xmlns="http://www.somedomain.com/customer-example">
<Name>David Brent</Name>
<Notes>Big time</Notes>
</Customer>

它还有其他领域,但即使使用这种最小化设置,我也无法让它工作。

我的pojo:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
   "name",
   "notes"
})
@XmlRootElement(name = "Customer")
public class Customer {

    @XmlElement(name = "Name", required = true)
    public String name;
    @XmlElement(name = "Notes", required = true)
    public String notes;


    public String getName() {
        return name;
    }


    public void setName(String value) {
        this.name = value;
    }

    ...
    ...

}

客户:

public static void main(String[] args) throws Exception {
    JAXBContext jc = JAXBContext.newInstance(Customer.class); 
    Unmarshaller unmarshaller = jc.createUnmarshaller();
    Customer customer = (Customer)unmarshaller.unmarshal(new File("Data.xml"));

    System.out.println("Customer: "+customer.getName());

}

抛出异常:

Exception in thread "main" javax.xml.bind.UnmarshalException: 
unexpected element (uri:"", local:"root"). Expected elements are <{}Customer>

什么是local:root ???如果我试图用另一种方式解析它

 JAXBContext jc = JAXBContext.newInstance(Customer.class); 
 Unmarshaller unmarshaller = jc.createUnmarshaller();
 StreamSource streamSource = new StreamSource("Data.xml");
 JAXBElement<Customer> customer = (JAXBElement<Customer>).    
 unmarshaller.unmarshal(streamSource, Customer.class);

 customer.getValue.getName(); //is null

这个问题是否与我的xml中的xmlns定义有关?

将Netbeans 7.3.1与Java 1.7 OpenJDK一起使用

2 个答案:

答案 0 :(得分:0)

基于异常的Data.xml的根元素是root而不是Customer由您期望的命名空间限定。要解决此问题,您可以像完成此操作一样使用unmarahal方法,该方法采用Class参数。

您获得null属性name的原因是您没有正确映射名称空间限定。您可以使用包级别@XmlSchema注释来执行此操作。以下内容将帮助您映射到名称空间:

答案 1 :(得分:0)

是的,正如Blaise所说,你缺少命名空间定义。

@XmlRootElement(name = "Customer", namespace="http://www.somedomain.com/customer-example")