我有一个 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)
在方法上使用注释,但它不起作用。有什么方法可以隐藏这个方法吗?