返回Pojo WebService JaxWS。重命名<return>节点</return>

时间:2012-08-29 00:26:06

标签: web-services jaxb jax-ws pojo

我认为它应该很容易,但我真的无法让它发挥作用。

我正在从WebMethod返回一个Pojo:

@WebMethod
public SubCategoria getSubCategorias() throws JAXBException {

    SubCategoria a = subCategoriaEJB.getAllSubCategorias().get(1);

    return a;
}

我只是回来第一个,试试。

我用soapUI测试我的Ws。

回复是:

    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
       <S:Body>
          <ns2:getSubCategoriasResponse xmlns:ns2="http://webService/">
             <return>
                <categoria>
                   <descripcion>Categoria Unica</descripcion>
                   <idCategoria>1</idCategoria>
                </categoria>
                <descripcion>asd123213</descripcion>
                <idSubCategoria>2</idSubCategoria>
             </return>
          </ns2:getSubCategoriasResponse>
       </S:Body>
    </S:Envelope>

我希望将“return”节点称为“SubCategoria”。我无法真正使用XmlRootElement Annotation。

这里是我的Pojo(SubCategoria)

    package ejb.Entidades;

    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.ManyToOne;
    import javax.xml.bind.annotation.XmlRootElement;


    @Entity
    @XmlRootElement(name="SubCategoria")
    public class SubCategoria {

        @Id
        private Integer idSubCategoria;

        @ManyToOne 
        private Categoria categoria;


        private String descripcion;


        public Integer getIdSubCategoria() {
            return idSubCategoria;
        }
        public void setIdSubCategoria(Integer idSubCategoria) {
            this.idSubCategoria = idSubCategoria;
        }

        public String getDescripcion() {
            return descripcion;
        }
        public void setDescripcion(String descripcion) {
            this.descripcion = descripcion;
        }
        public Categoria getCategoria() {
            return categoria;
        }
        public void setCategoria(Categoria categoria) {
            this.categoria = categoria;
        }

    }

有人有线索吗?

提前致谢。

1 个答案:

答案 0 :(得分:4)

您应该使用@WebResult注释:

@WebMethod
@WebResult(name = "subCategoria")
public SubCategoria getSubCategorias() throws JAXBException {

    SubCategoria a = subCategoriaEJB.getAllSubCategorias().get(1);

    return a;
}