XmlElement annotation 不允许使用 WebParam
2022-09-03 04:26:02
我在Web服务中有一个方法,具有以下签名:
@WebResult(name="purchaseId") public int CreatePurchase(
@XmlElement(required=true)
@WebParam(name = "item") String item {
...
}
在我看来(根据我发现的信息),这应该有效。不幸的是,我在编译时收到以下错误消息:
The annotation @XmlElement is disallowed for this location
有谁知道如何解决这个问题?