0

给带有多个元素标签的 xml 时,我得到一个 javax.xml.bind.UnmarshalException。我的 JAXB 注释类如下所示。

@XmlRootElement
    public class Group {

        private String id;
        private String name;

        @XmlElementWrapper(name="groups")
        @XmlElement(name="group")
        private ArrayList<Group> grouplist;

        public void setGrouplist(ArrayList<Group> grouplist){
            this.grouplist=grouplist;
        }

        public ArrayList<Group> getGrouplist(){
            return grouplist;
        }
           ---------------------------
           ---------------------------
           -------------------------

输入的xml会是这样的......

<groups>
<group>
<id>1</id>
<name>asd</name>
<designation>SE</designation>
</group>
</groups>

我的资源是这样的。

    @POST
    @Consumes(MediaType.APPLICATION_XML)
    @Produces(MediaType.APPLICATION_XML)    
 public Response addGroup(@Context HttpServletRequest req)throws JAXBException,IOException{
 JAXBContext jaxb = JAXBContext.newInstance(Group.class);
 Group grps= (Group)jaxb.createUnmarshaller().unmarshal(req.getInputStream());

当我从 req 提供上述 xml 时,我得到以下异常

    com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException
SEVERE: The exception contained within MappableContainerException could not be mapped to a response, re-throwing to the HTTP container
javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"groups"). Expected elements are <{}group>: unexpected element (uri:"", local:"groups"). Expected elements are <{}group>

当我通过删除组标记和相应的@xmlelementWrapper 数组列表在我的 xml 中给一个组时,上述工作正常。

4

2 回答 2

1

我认为您在班级中缺少一个根元素。将其更改为:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement
public class Group {
...
...
于 2013-01-07T16:49:40.160 回答
0

如果您在使用 Apache CXF 的 JAX-RS 2.0 客户端时遇到此问题,您可能会遇到CXF-5980

于 2014-08-31T17:13:33.350 回答