7

我有一个@WebMethod 调用

@WebMethod
public int cancelCampaign(String campaignId, String reason);

我想将campaignId 字段标记为必填项。不知道该怎么做。

我正在使用 JBOSS 7.1 服务器。

4

2 回答 2

7

我有类似的要求,从 SoapUI 我注意到我得到了

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
     xmlns:bus="http://business.test.com/">
  <soapenv:Header/>
  <soapenv:Body>
     <!-- optional -->
     <bus:addItem>
        <bus:item>
           <id>?</id>
           <!-- optional -->
           <name>?</name>
        </bus:item>
        <!-- optional -->
        <itemType>?</itemType>
     </bus:addItem>
  </soapenv:Body>
</soapenv:Envelope>

代替

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
     xmlns:bus="http://business.test.com/">
  <soapenv:Header/>
  <soapenv:Body>
     <bus:addItem>
        <bus:item>
           <id>?</id>
           <name>?</name>
        </bus:item>
        <itemType>?</itemType>
     </bus:addItem>
  </soapenv:Body>
</soapenv:Envelope>

JAX-WS Metro 2.0 RI 中的一个出路是使用注释每个参数

@XmlElement( required = true )

就我而言,我必须对所需的 WebMethod 参数和所有所需的自定义类型的 getter 执行此操作,如下所示:

在网络服务中:

...
 @WebMethod( operationName = "getItems" )
   @WebResult( name = "item" )
   public List<Item> getItems(
     @WebParam( name = "itemType" ) @XmlElement( required = true ) String itemType );
...

在我的 POJO 课程中:

@XmlAccessorType(XmlAccessType.FIELD)
public class Item implements Serializable
{
   private static final long serialVersionUID = 1L;

   @XmlElement( required = true )
   private int               id;

   @XmlElement( required = true )
   private String            name;

   /**
    * Default constructor.
    */
   public Item() { }

   /**
    * @return the id
    *
    */       
   public int getId()
   {
      return id;
   }

   /* setter for id */

   /**
    * @return the name
    */
   public String getName()
   {
      return name;
   }

   /* setter for name */

}
于 2014-08-13T03:07:21.020 回答
4

做到这一点的唯一方法JAX-WS是编写一些包装类来指定注释required=true上的标志。XmlElement您的请求元素应如下所示:

@XmlType(name="YourRequestType", propOrder={"campaignId", "reason"})
public class YourRequest {
    @XmlElement(name="campaignId", required=true)
    private String campaignId;
    @XmlElement(name="reason", required=false)
    private String reason;

    //Getters and setters        

}

您的 Web 方法应如下所示:

@WebMethod
public int cancelCampaign(@WebParam(name = "request") YourRequest request) {
   String campaignId = request.getCampaignId();

   return 0;
}

这将告诉在您的for元素JAXB中生成。minOccurs=1XSDcampaignId

于 2012-09-28T15:17:02.793 回答