0

我有一个 java bean 类说

class LineInfoBean{
  //Methods 

   method a() //Appears in the wsdl definition

   ....
   ....

   method b()//Appears in the wsdl definition -> I want to hide it from appearing in the wsdl


}

有没有办法隐藏方法 b 出现在 wsdl 定义中。我尝试@WebMethod(exclude=true)在方法上使用注释,但它不起作用。有什么方法可以隐藏这个方法吗?

4

1 回答 1

-1

不要把@WebMethod注解放在这个方法上,而是把它放在应该出现在WSDL中的其他方法上

于 2012-04-23T21:28:47.220 回答